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文件

下載ServiceNow DevTools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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
官方網址 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
}