Instance Crossreference plugin

Use this plugin to cross-reference between two instances of ServiceNow.

O que é Instance Crossreference plugin?

Instance Crossreference plugin é uma extensão do Chrome desenvolvida por Jeremy Leslie, e sua principal característica é "Use this plugin to cross-reference between two instances of ServiceNow.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Instance Crossreference plugin

Baixe arquivos de extensão Instance Crossreference plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Instance Crossreference plugin Instance Crossreference plugin
ID giajmkeiigebalenpneocipkbjnbebel
URL Oficial https://chromewebstore.google.com/detail/instance-crossreference-p/giajmkeiigebalenpneocipkbjnbebel
Descrição Use this plugin to cross-reference between two instances of ServiceNow.
Tamanho do Arquivo 1.01 MB
Contagem de Instalações 17
Versão Atual 2.0.1
Última Atualização 2018-05-01
Data de Publicação 2018-05-01
Desenvolvedor Jeremy Leslie
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}