ServiceNow Lookup

Add Service-Now Functionality to Chrome for Service-Now.

ServiceNow Lookup란 무엇입니까?

ServiceNow Lookup은(는) DM Productions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Service-Now Functionality to Chrome for Service-Now."입니다.

확장 프로그램 스크린샷

screenshot

ServiceNow Lookup 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Allows for the quick access to Service-Now tickets through a quick reference on the Address Bar (Typing 'sn' on the Address Bar followed by a space) or through a context menu when selecting text on a site. 

This allows you to get into a RFC, INC or other ticket quickly without having to manually navigate through your Service-Now site. 

Recognized Ticket Prefixes:
* RFC - Change Request
* INC - Incident
* CTASK - Change Task
* REQ - SC Request
* TASK - SC Task
* RITM - SC Request Item
* KB - Knowledge Base Item
* PRB - Problem

Anything that does not match one of these prefixes will automatically be placed into the Service-Now text search interface to try and find any matches.

Once you have installed this application you will need to configure your Service-Now hostname for accessing your interface. (EG company.service-now.com) This can be configured under 'Extensions' by clicking the 'Options' button for the Service-Now Lookup Extension.                    

확장 프로그램 기본 정보

이름 ServiceNow Lookup ServiceNow Lookup
ID lalhboihpjkhmcalhjlkehfnphpjebma
공식 URL https://chromewebstore.google.com/detail/servicenow-lookup/lalhboihpjkhmcalhjlkehfnphpjebma
설명 Add Service-Now Functionality to Chrome for Service-Now.
파일 크기 17.07 KB
설치 횟수 2,817
현재 버전 1.8
최근 업데이트 2014-10-31
출시 날짜 2014-10-31
평점 4.22/5 총 18 개의 평점
개발자 DM Productions
결제 유형 free
도움말 페이지 URL https://groups.google.com/forum/#!forum/sn-lookup-extension-discussions
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ServiceNow Lookup",
    "description": "Add Service-Now Functionality to Chrome for Service-Now.",
    "version": "1.8",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "sn"
    },
    "options_page": "options.html",
    "icons": {
        "16": "sn-lookup16.png",
        "48": "sn-lookup48.png",
        "128": "sn-lookup128.png"
    },
    "manifest_version": 2
}