Custom UI Modifications for Google Sheets.
Google Sheets. by enamul-hoque
Details
Authorenamul-hoque
LicenseNo License
Categoryhttps://docs.google.com/spreadsheets/
Created
Updated
Size401 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Google Sheets.
@version 20240318.21.48
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://docs.google.com/spreadsheets/") {
/** Sheets List Counter **/
.docs-homescreen-itemholder-content {
counter-reset: sheetsCount;
}
.docs-homescreen-list-item-title-value:before {
content: counter(sheetsCount) ". ";
counter-increment: sheetsCount;
}
}