-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforce-refresh.user.js
67 lines (54 loc) · 2.64 KB
/
force-refresh.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// ==UserScript==
// @id iitc-plugin-force-refresh
// @name IITC plugin: force refresh
// @category Tweaks
// @version 0.1.0.20170430.123533
// @description Reload intel data without refreshing the page.
// @include https://*.ingress.com/intel*
// @include http://*.ingress.com/intel*
// @match https://*.ingress.com/intel*
// @match http://*.ingress.com/intel*
// @include https://*.ingress.com/mission/*
// @include http://*.ingress.com/mission/*
// @match https://*.ingress.com/mission/*
// @match http://*.ingress.com/mission/*
// @grant none
// ==/UserScript==
function wrapper(plugin_info) {
// ensure plugin framework is there, even if iitc is not yet loaded
if(typeof window.plugin !== 'function') window.plugin = function() {};
//PLUGIN AUTHORS: writing a plugin outside of the IITC build environment? if so, delete these lines!!
//(leaving them in place might break the 'About IITC' page or break update checks)
plugin_info.buildName = 'iitc-test';
plugin_info.dateTimeVersion = '20170430.123533';
plugin_info.pluginId = 'force-refresh';
//END PLUGIN AUTHORS NOTE
// PLUGIN START ////////////////////////////////////////////////////////
var setup = function() {
var container = L.DomUtil.create('div', 'leaflet-control');
var toolbar = L.DomUtil.create('div', 'leaflet-bar');
var button = L.DomUtil.create('a', 'leaflet-refresh');
button.innerText = '刷';
button.onclick = function() {
idleReset();
window.mapDataRequest.cache = new DataCache();
window.mapDataRequest.refresh();
window.mapDataRequest.processRequestQueue();
};
toolbar.appendChild(button);
container.appendChild(toolbar);
document.querySelector('.leaflet-top.leaflet-left').appendChild(container);
};
// PLUGIN END //////////////////////////////////////////////////////////
setup.info = plugin_info; //add the script info data to the function as a property
if(!window.bootPlugins) window.bootPlugins = [];
window.bootPlugins.push(setup);
// if IITC has already booted, immediately run the 'setup' function
if(window.iitcLoaded && typeof setup === 'function') setup();
} // wrapper end
// inject code into site context
var script = document.createElement('script');
var info = {};
if (typeof GM_info !== 'undefined' && GM_info && GM_info.script) info.script = { version: GM_info.script.version, name: GM_info.script.name, description: GM_info.script.description };
script.appendChild(document.createTextNode('('+ wrapper +')('+JSON.stringify(info)+');'));
(document.body || document.head || document.documentElement).appendChild(script);