WME Invert GSV

Un-invert GSV in WME

  1. // ==UserScript==
  2. // @name WME Invert GSV
  3. // @namespace https://greasyfork.org/en/users/46070
  4. // @version 0.1
  5. // @description Un-invert GSV in WME
  6. // @author Iain House
  7. // @include https://www.waze.com/editor*
  8. // @include https://www.waze.com/*/editor*
  9. // @include https://beta.waze.com/editor*
  10. // @include https://beta.waze.com/*/editor*
  11. // @exclude https://www.waze.com/*user/editor/*
  12. // @supportURL https://www.waze.com/forum/viewtopic.php?f=819&t=263340
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18. var style = document.createElement('style');
  19. style.type = 'text/css';
  20. style.innerHTML = '.gm-style { filter: invert(1) !important; }';
  21. style.id = "INVERTGSV";
  22. document.head.appendChild(style);
  23. })();