Instance Crossreference plugin
Use this plugin to cross-reference between two instances of ServiceNow.
Instance Crossreference plugin क्या है?
Instance Crossreference plugin Jeremy Leslie द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use this plugin to cross-reference between two instances of ServiceNow."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Instance Crossreference plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This tool was created to help ServiceNow administrators manage data by giving single-click access to corresponding records in another environment without any additional configurations in either instance. Cross-references can span between any two enterprise instances. Once a target instance is defined, ref reference icons will appear with the typical blue icons. Maps allow for easy, integrated cross-reference where two instances have the same data in different tables. This tool allows up to ten custom mapping profiles with ten maps per profile. The default map is 'None,' which links to the same table on both ends of the integration. Effective use of the Crossreference plugin requires: - Login access to external instance(s) being referenced - Read access in the external instances records being accessed.
एक्सटेंशन की मूल जानकारी
नाम | Instance Crossreference plugin |
ID | giajmkeiigebalenpneocipkbjnbebel |
आधिकारिक URL | https://chromewebstore.google.com/detail/instance-crossreference-p/giajmkeiigebalenpneocipkbjnbebel |
विवरण | Use this plugin to cross-reference between two instances of ServiceNow. |
फ़ाइल का आकार | 1.01 MB |
स्थापना संख्या | 17 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2018-05-01 |
प्रकाशन तिथि | 2018-05-01 |
डेवलपर | Jeremy Leslie |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instance Crossreference plugin", "short_name": "SN Crossreference", "description": "Use this plugin to cross-reference between two instances of ServiceNow.", "version": "2.0.1", "options_page": "html\/options.html", "browser_action": { "default_icon": "img\/icon48.png", "default_popup": "html\/popup.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.service-now.com\/*" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/contentscript.js" ], "css": [ "css\/crossref_style.css" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "*:\/\/*.service-now.com\/*", "storage", "webNavigation" ] } |