Instance Crossreference plugin

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

Instance Crossreference pluginคืออะไร?

Instance Crossreference plugin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeremy Leslie และคุณลักษณะหลักของมันคือ "Use this plugin to cross-reference between two instances of ServiceNow."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instance Crossreference plugin

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}