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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |