Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. // ==UserScript==
  2. // @id iitc
  3. // @name IITC plugin: Detect field
  4. // @category Misc
  5. // @version 1.0.20150105.02
  6. // @namespace https://github.com/jonatkins/ingress-intel-total-conversion
  7. // @updateURL https://gist.github.com/pad92/1c1439c0b2026860e9b0/raw/e92ee8e40dc297d11e8f01336442a765cbfbb178/iitc-plugin-hawk_eyes.user.js
  8. // @downloadURL https://gist.github.com/pad92/1c1439c0b2026860e9b0/raw/e92ee8e40dc297d11e8f01336442a765cbfbb178/iitc-plugin-hawk_eyes.user.js
  9. // @description See all portals, neutrals included, regardless of the zoom used.
  10. // @include https://www.ingress.com/intel*
  11. // @include http://www.ingress.com/intel*
  12. // @match https://www.ingress.com/intel*
  13. // @match http://www.ingress.com/intel*
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. //window.MapDataRequest.prototype.mapMoveStart = function() {
  18. // var numDice = document.getElementById('chatall').innerHTML;
  19. // var array = numDice.split(",");
  20. // window.alert(array[0]);
  21. window.plugin.linkstarstats.getLinks = function() {
  22. var numDice = document.getElementById('chatall').innerHTML;
  23. var array = numDice.split(",");
  24. if (!selectedPortal) {
  25. alert(array[0]);
  26. return false;
  27. }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement