ingress-intel-total-conversion/plugins/render-limit-increase.user.js
Jon Atkins 5edcc7dbfa render limits are obsolete with the new code - remove contents of plugin
(file remains so users auto-updating get this 'empty' version)
2013-08-26 15:17:49 +01:00

34 lines
1.0 KiB
JavaScript

// ==UserScript==
// @id iitc-plugin-render-limit-increase@jonatkins
// @name IITC plugin: render limit increase
// @category Obsolete
// @version 0.4.0.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@
// @description [@@BUILDNAME@@-@@BUILDDATE@@] OBSOLETE PLUGIN
// @include https://www.ingress.com/intel*
// @include http://www.ingress.com/intel*
// @match https://www.ingress.com/intel*
// @match http://www.ingress.com/intel*
// @grant none
// ==/UserScript==
@@PLUGINSTART@@
// PLUGIN START ////////////////////////////////////////////////////////
// use own namespace for plugin
window.plugin.renderLimitIncrease = function() {};
window.plugin.renderLimitIncrease.setHigherLimits = function() {
};
var setup = window.plugin.renderLimitIncrease.setHigherLimits;
// PLUGIN END //////////////////////////////////////////////////////////
@@PLUGINEND@@