Instance Crossreference plugin
Use this plugin to cross-reference between two instances of ServiceNow.
Instance Crossreference pluginとは何ですか?
Instance Crossreference pluginはJeremy Leslieによって開発されたChromeの拡張機能で、その主な機能は「Use this plugin to cross-reference between two instances of ServiceNow.」です。
拡張機能のスクリーンショット
Instance Crossreference plugin拡張機能のCRXファイルをダウンロード
Instance Crossreference plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |