Added regex to userstyle so it is detected for all users.
Google Maps Dark Nightmode - invert maps by lukaignjatovic
Details
Authorlukaignjatovic
LicenseNo License
Categorygoogle,googlemaps,maps
Created
Updated
Size686 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 Maps Dark Nightmode - invert maps
@namespace USO Archive
@author stormi
@description `Style to invert the actual map.Can slow down scrolling...`
@version 20190513.23.19
@license NO-REDISTRIBUTION
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("https?://www\\.google\\..*/maps.*[0-9](z/data.*|z*)") {
#scene {background: #222 !important}
#app-container/*[class="vasquette"]*/ #scene /*.widget-scene-canvas */ {
filter: invert(100%) hue-rotate(180deg);
transform: translate3d(0,0,0);
-webkit-filter: invert(100%) hue-rotate(180deg);
-webkit-transform: translate3d(0,0,0)}
}