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 iitc-fix-beacons | |
// @name IITC plugin: Fix Beacons | |
// @version 0.6 | |
// @author Appastair | |
// @description Fixing missing beacon icons by including Base64-encoded icons. | |
// @downloadURL https://gist.github.com/appastair/fa00c9b654cdabef2c222807636bf7a2/raw/iitc-fix-beacons.user.js | |
// @updateURL https://gist.github.com/appastair/fa00c9b654cdabef2c222807636bf7a2/raw/iitc-fix-beacons.user.js | |
// @category Stock | |
// @include https://*.ingress.com/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 iitc-toast | |
// @name IITC plugin: Toast 🍞 | |
// @version 0.1 | |
// @author Appastair | |
// @description Fixing missing Toast beacon icon by including two variant Base64-encoded icons. | |
// @category Stock | |
// @include https://*.ingress.com/intel* | |
// @include http://*.ingress.com/intel* | |
// @match https://*.ingress.com/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
{ | |
"features": [{ | |
"geometry": { | |
"coordinates": [ | |
[ | |
[23.8924767, 54.8985564], | |
[23.888654708862305, 54.899883430791235], | |
[23.875908851623535, 54.89887167667083], | |
[23.88131618499756, 54.894923124741275], | |
[23.8995792, 54.8939661], |
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
{ | |
"features": [{ | |
"geometry": { | |
"coordinates": [ | |
[ | |
[-47.87412643432617, -15.791510250073149], | |
[-47.87451267242431, -15.782259813917632], | |
[-47.86610126495361, -15.77680846635244], | |
[-47.86494255065918, -15.763881579285876], | |
[-47.86764621734619, -15.75909057493134], |
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 iitc-plugin-uniques-importer@Appastair | |
// @name IITC plugin: Uniques Importer | |
// @category Misc | |
// @version 0.1.3.20180809.147 | |
// @namespace https://gist.github.com/appastair/2a15cc369049720178a8e36eadfba90b | |
// @updateURL https://gist.github.com/appastair/2a15cc369049720178a8e36eadfba90b | |
// @downloadURL https://gist.github.com/appastair/2a15cc369049720178a8e36eadfba90b | |
// @description Automated importer of unique portals captured for use with the Uniques plugin. | |
// @include https://*.ingress.com/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 iitc-plugin-multi-passcode@rongself | |
// @name IITC plugin: Multi Passcode Redeem | |
// @category Controls | |
// @version 0.1.0.20180529.1331. | |
// @namespace https://gist.github.com/rongself/288ad6c887ffb184b469ae0295acc642 | |
// @updateURL https://gist.github.com/appastair/bd32ac0bbfed9a476edd0d2c2148d25e | |
// @downloadURL https://gist.github.com/appastair/bd32ac0bbfed9a476edd0d2c2148d25e | |
// @description [rongself-2016-07-17-154202] script for multi passcode apply [appastair-2018-05-28.1331] fixed and added support for newline | |
// @include https://*.ingress.com/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
#!/usr/bin/env bash | |
while [ 1 ]; do | |
# The --password-store=basic is there to avoid the KDE Wallet access | |
# request dialog on start-up. | |
google-chrome --password-store=basic --app=http://www.ingress.com/intel?ll=-33.781201,150.619812\&z=10 & | |
# Get the process ID, so we can kill it later | |
chrome_pid=$! | |
sleep 3 | |
# Get the X window ID of the process we just started so we can resize it. |
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
/* alastair.min.js released under the MIT licence. */ | |
var undefined,console,window,JSON,$; |
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
function getTime(){ | |
return ((new Date().valueOf() * 0.001)|0); | |
} | |
function cacheTime(key,time){ | |
/* @TODO: Compare client/server cache ages! */ | |
if((!window.localStorage.getItem('cache-ttl')) || !window.localStorage.getItem('cache-ttl').match(/(\{).+(\})/)){ | |
var cacheTTL = {}; | |
} | |
else{ |
NewerOlder