ServiceNow tool belt

A set of tools for ServiceNow developers and administrators

ServiceNow tool belt란 무엇입니까?

ServiceNow tool belt은(는) syvo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A set of tools for ServiceNow developers and administrators"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension provides a small set of tools for Servicenow users and developers.

Manage your tabs:
* Lists open tabs grouped by instance
* Open new tabs on known instances
* Open the same object or list on another instance
* Select a color to fill the favicon for each instance
* Quick access to documentation, API and custom searches
* See the actual current update set for your session

Manage your instances:
* Automatically record visited instances 
* Set friendly names for known instances
* Hide or show a specific instance from the options page

Keyboard commands: 
* Reopen in navpage frame
* Switch between fields & columns labels and their technical names
* Open versions list for an object
* Open an enhanced background script window

Handle your configuration:
* Sync your instances & preferences across browsers
* Export & Import your instances preferences from a json file                    

확장 프로그램 기본 정보

이름 ServiceNow tool belt ServiceNow tool belt
ID jflcifhpkilfaomlnikfaaccmpidkmln
공식 URL https://chromewebstore.google.com/detail/servicenow-tool-belt/jflcifhpkilfaomlnikfaaccmpidkmln
설명 A set of tools for ServiceNow developers and administrators
파일 크기 121 KB
설치 횟수 740
현재 버전 5.0.0
최근 업데이트 2021-03-18
출시 날짜 2020-03-23
평점 5.00/5 총 2 개의 평점
개발자 syvo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://macmorning.github.io/snowtools-webext/
도움말 페이지 URL https://github.com/macmorning/snowtools-webext/issues
개인정보 보호 정책 페이지 URL https://macmorning.github.io/snowtools-webext
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ServiceNow tool belt",
    "version": "5.0.0",
    "description": "A set of tools for ServiceNow developers and administrators",
    "homepage_url": "https:\/\/github.com\/macmorning\/snowtools-webext",
    "icons": {
        "48": "icons\/tools-48.png",
        "128": "icons\/tools-128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Open the tools popup"
        },
        "execute-reframe": {
            "suggested_key": {
                "default": "Alt+F"
            },
            "description": "Reopen current url into navpage"
        },
        "execute-fieldnames": {
            "suggested_key": {
                "default": "Alt+N"
            },
            "description": "Switch from technical to display field names"
        },
        "execute-openversions": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "View versions of current object"
        },
        "execute-backgroundscript": {
            "description": "Open a background script window on current instance"
        }
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_title": "SNOW Toolbelt",
        "default_icon": {
            "48": "icons\/tools-48.png",
            "128": "icons\/tools-128.png"
        },
        "default_popup": "dialog\/snowbelt.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.service-now.com\/*"
            ],
            "js": [
                "content-script\/snowbelt-cs.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "storage",
        "cookies"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "downloads"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_specific_settings": {
        "gecko": {
            "id": "{db3d7d07-a7d3-4d87-9f39-4ef22214acbd}"
        }
    },
    "web_accessible_resources": [
        "\/content-script\/getSession.js",
        "\/css\/snowbelt.css"
    ]
}