Short template for how to only show specific time zones in Google calendar
Google calendar favourite time zones by Rzztmass
Details
AuthorRzztmass
LicenseNo License
Categorycalendar.google.com
Created
Updated
Size505 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Replace with time zones relevant for you. Default is Los Angeles, United Kingdom, Japan. If you remove the second block of code, you will see suggested time zones. This usually leads to the suggested timezone appearing twice, so it is not recommended.
v1.0 First release
v1.0.1 Added exceptions for repeat and visibility not showing up
Source code
@name Google calendar favourite time zones
@namespace Rzztmass
@version 1.01
@-moz-document domain("calendar.google.com") {
/* Replace with relevant time zones */
li:not([aria-label*="Los Angeles"], [aria-label*="United Kingdom"], [aria-label*="Japan Standard"]):not(.mZytBb):not(.ehCvn)[aria-label] {
display: none !important;
}
/* Remove three lines below if you still want to see suggested time zones */
li[data-value^="suggestion"][aria-label] {
display: none !important;
}
}