Vâng, thật tệ khi Google không thực hiện điều này. Tôi chỉ tập hợp một bookmarklet JavaScript nhỏ cho mục đích này ở đây . Nhấp vào một lần sẽ chèn kiểu CSS để ẩn các tiêu đề, nhấp lại sẽ xóa CSS và hiển thị lại chúng.
javascript:(function(){var hidecss = "body { margin-left: -45px;
margin-top: -47px; } div.grid-table-container { width: 100%
!important; }
div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left:
initial !important; right: 0px; }
div.goog-inline-block.grid4-inner-container { width: 100% !important;
}"; if (document.querySelector('#hidecss')===null){ var hidescript =
document.createElement('style'); hidescript.type = 'text/css';
hidescript.id = 'hidecss'; hidescript.innerHTML = hidecss;
document.head.appendChild(hidescript); } else
document.getElementById('hidecss').remove();})();
Có thể phải điều chỉnh các kích thước màn hình khác nhưng đó là ý chính của nó!
Chỉnh sửa định dạng JS:
var hidecss = "body { margin-left: -45px; margin-top: -47px; } div.grid-table-container { width: 100% !important; } div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left: initial !important; right: 0px; } div.goog-inline-block.grid4-inner-container { width: 100% !important; }";
if (document.querySelector('#hidecss')===null){
var hidescript = document.createElement('style');
hidescript.type = 'text/css';
hidescript.id = 'hidecss';
hidescript.innerHTML = hidecss;
document.head.appendChild(hidescript);
}
else document.getElementById('hidecss').remove();
Đây là một hack xấu xí vì Google không tạo ra các ứng dụng web chơi tốt với sửa đổi người dùng như thế này, vì vậy nó chỉ trực quan (cố gắng nhấp vào các ô đưa bạn đến các ô khác nhau và phần tô sáng bị rối tung). Tôi đã kết thúc việc không sử dụng nó