हाँ, यह बहुत बुरा है Google इसे लागू नहीं कर रहा है। मैंने इस उद्देश्य के लिए बस थोड़ा सा जावास्क्रिप्ट बुकमार्क यहां रखा है । एक बार क्लिक करने के बाद हेडर को छिपाने के लिए CSS स्टाइल सम्मिलित करता है, फिर से क्लिक करने से CSS को हटा दिया जाता है और उन्हें फिर से दिखाता है।
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();})();
हो सकता है कि इसे अन्य स्क्रीन आकारों के लिए तैयार किया जाए, लेकिन यह इसका सार है!
स्वरूपित 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();
यह एक बदसूरत हैक है क्योंकि Google इस तरह से उपयोगकर्ता संशोधन के साथ अच्छी तरह से खेलने वाले वेब को नहीं बनाता है, इसलिए यह केवल दृश्य है (कोशिकाओं पर क्लिक करने की कोशिश आपको विभिन्न कोशिकाओं में ले जाती है और हाइलाइटिंग गड़बड़ हो जाती है)। मैंने इसका उपयोग नहीं किया