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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载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 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"
    ]
}