Skip to content

Instantly share code, notes, and snippets.

@ozero
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozero/f9726297c2f618ad0449 to your computer and use it in GitHub Desktop.
Save ozero/f9726297c2f618ad0449 to your computer and use it in GitHub Desktop.
Run IITC userscript for WEBHUB iPhone app. #ingress
// ==UserScript==
// @name IITC
// @description Run IITC Bookmarklet
// @include https://www.ingress.com/intel*
// ==/UserScript==
var urls = ['total-conversion-build.user.js',
'plugins/portal-highlighter-high-level.user.js',
'plugins/player-tracker.user.js',
'plugins/show-less-portals-zoomed-out.user.js'];
var head=document.getElementsByTagName('head')[0];
for(var i in urls){
var script=document.createElement('script');
script.type='text/javascript';
script.src='https://secure.jonatkins.com/iitc/release/'+urls[i];
head.appendChild(script);
}
@ozero
Copy link
Author

ozero commented Jan 24, 2015

You can install this Webhub userjs in 1-tap:
See http://test.currentdir.com/wh/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment