ServiceNow DevTools

Developer tool for ServiceNow.(Personal work to ServiceNow)

ServiceNow DevTools란 무엇입니까?

ServiceNow DevTools은(는) Erik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Developer tool for ServiceNow.(Personal work to ServiceNow)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        - Check current logged in user, selected Update Set, and Scope.
- View your last 30 updates, browse to related record. (Admin role only)
- Search tables and open list, dictionary or schema map.
- A separate page is used to query the table.
- Save record with CTRL-S In Studio.
- Pop In / Pop Up ServiceNow Current Page.
- Add table favorites
- Support for Studio                    

확장 프로그램 기본 정보

이름 ServiceNow DevTools ServiceNow DevTools
ID cdfllbbjepkdmlkijlmjfhpmfolgonkn
공식 URL https://chromewebstore.google.com/detail/servicenow-devtools/cdfllbbjepkdmlkijlmjfhpmfolgonkn
설명 Developer tool for ServiceNow.(Personal work to ServiceNow)
파일 크기 344 KB
설치 횟수 210
현재 버전 2.1.5
최근 업데이트 2022-02-19
출시 날짜 2020-12-02
평점 3.00/5 총 2 개의 평점
개발자 Erik
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ServiceNow DevTools",
    "short_name": "SN DevTools",
    "description": "Developer tool for ServiceNow.(Personal work to ServiceNow)",
    "author": "Eric Yang",
    "version": "2.1.5",
    "permissions": [
        "tabs",
        "https:\/\/*.service-now.com\/*",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.service-now.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/signon.service-now.com\/*",
                "https:\/\/*.service-now.com\/*XML=*"
            ],
            "css": [
                "content\/css\/run_sys_scripts.css"
            ],
            "js": [
                "js\/jquery.js",
                "content\/js\/content_script_frame.js"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "pop": {
            "suggested_key": {
                "default": "Ctrl+2",
                "mac": "Command+2"
            },
            "description": "Pop-In \/ Pop-Out"
        }
    },
    "page_action": {
        "default_title": "ServiceNow DevTools",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "show_matches": [
            "https:\/\/*.service-now.com\/*"
        ]
    },
    "web_accessible_resources": [
        "js\/inject.js"
    ],
    "manifest_version": 2
}