// ==UserScript== // @id iitc-plugin-show-address@vita10gy // @name IITC plugin: show portal address in sidebar // @category Portal Info // @version 0.2.2.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ // @description [@@BUILDNAME@@-@@BUILDDATE@@] Portal address will show in the sidebar. // @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.portalAddress = function() {}; window.plugin.portalAddress.portalDetail = function(data) { // If there's 4 sets of comma delimieted info the last one is the // country, so get rid of it. If the country is in the [2] then it // doesn't matter because address is usually short enough to fit. var d = data.portalDetails.portalV2; var address = d.descriptiveText.ADDRESS.split(',').splice(0,3).join(','); $('.imgpreview').append('
'+address+'
'); } var setup = function() { window.addHook('portalDetailsUpdated', window.plugin.portalAddress.portalDetail); $('head').append(''); } // PLUGIN END ////////////////////////////////////////////////////////// @@PLUGINEND@@