Last active
December 10, 2015 13:09
-
-
Save breunigs/4439073 to your computer and use it in GitHub Desktop.
Restore Google Maps Classic For Ingress Intel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @id www.ingress.com-f4dbd255-58ee-4873-988a-b2265a876000@scriptish | |
// @name Restore Google Maps Classic For Ingress Intel | |
// @version 3 | |
// @namespace https://gist.github.com/4439073 | |
// @updateURL https://gist.github.com/raw/4439073/ingress-classic-gmaps-laf.user.js | |
// @downloadURL https://gist.github.com/raw/4439073/ingress-classic-gmaps-laf.user.js | |
// @description Restores the classical Google Maps style to the Ingress intel map | |
// @include http://www.ingress.com/intel* | |
// @run-at document-end | |
// ==/UserScript== | |
// Public Domain | |
var script = document.createElement("script"); | |
var code = document.createTextNode('window.vd = [{featureType:"poi", stylers:[{visibility:"off"}]}, {featureType:"transit", elementType:"all", stylers:[{visibility:"off"}]}];'); | |
script.appendChild(code); | |
document.body.appendChild(script); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
window.vd -> window.ff
DmitrySandalov/ingress-userscripts@8eeba5c#ingress-classic-gmaps-laf.user.js