SN Utils OnPrem

ServiceNow Productivity tools. (Personal work, not affiliated to ServiceNow)

SN Utils OnPremとは何ですか?

SN Utils OnPremはhttps://arnoudkooi.comによって開発されたChromeの拡張機能で、その主な機能は「ServiceNow Productivity tools. (Personal work, not affiliated to ServiceNow)」です。

拡張機能のスクリーンショット

SN Utils OnPrem拡張機能のCRXファイルをダウンロード

SN Utils OnPrem拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        USE THE NORMAL SN UTILS VERSIONS IF YOU ARE ON SERVICE-NOW.COM
This is a version of ServiceNow Utils that supports instances NOT hosted via service-now.com
Please use the normal version if working only on service-now.com, this needs more access.

Features:
NOTE: For instances not on service-now.com use SN Utils OnPrem!
 
Current features: 
- Favicon Badges
- Slashcommands type in /help to know more about this feature
- Edit scripts and widgets in VS Code! (requires sn-scriptsync)
- Show technical names: Show useful info like choice value and name next to labels.
- Search updatesets in progress, view list and set current.
- View your last 20 updates, browse to related record. (Admin role only)
- Node switching.
- Search tables and open list, dictionary or schema map.
- View the data and columns of the current record in a table (similair to view XML)
- Select a (abstract) username, view details of user.
- Provide (context aware) links to relevant places.
- Ability to popin, popout, or copy a tab. (also via context menu)
- Generate GlideRecord template, based on list
- Save record with CTRL-S / CMD-S
- Rightclick to go to Scriptinclude, table or search
- Paste a clipboard image to any record with CTRL-V / CMD-V
- CMD / CTRL Click in a form on element labels, to build conditions and open list
- Support for Studio
- Context menu code snippets and links

There are no assets required on your instances.                    

拡張機能の基本情報

名前 SN Utils OnPrem SN Utils OnPrem
ID lfabkiipmidkmhplochgpbaeekjjfbch
公式URL https://chromewebstore.google.com/detail/sn-utils-onprem/lfabkiipmidkmhplochgpbaeekjjfbch
説明 ServiceNow Productivity tools. (Personal work, not affiliated to ServiceNow)
ファイルサイズ 3.92 MB
インストール数 6,310
現在のバージョン 7.3.4.4
最終更新日 2024-03-03
公開日 2020-06-28
評価 5.00/5 合計 13 レビュー
開発者 https://arnoudkooi.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.arnoudkooi.com
ヘルプページのURL https://github.com/arnoudkooi/ServiceNow-Utils/issues
プライバシーポリシーページのURL https://github.com/arnoudkooi/ServiceNow-Utils/blob/master/PRIVACY.md
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SN Utils OnPrem",
    "short_name": "SN Utils Onprem",
    "description": "ServiceNow Productivity tools. (Personal work, not affiliated to ServiceNow)",
    "author": "Arnoud Kooi \/ arnoudkooi.com",
    "version": "7.3.4.4",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus",
        "cookies"
    ],
    "icons": {
        "16": "images\/op16.png",
        "24": "images\/op24.png",
        "32": "images\/op32.png",
        "48": "images\/op48.png",
        "128": "images\/op128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*?XML*",
                "*:\/\/*\/*&XML*",
                "*:\/\/*\/*?WSDL*",
                "*:\/\/*\/*&WSDL*"
            ],
            "js": [
                "js\/purify.min.js",
                "content_script_all_frames.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*?XML*",
                "*:\/\/*\/*&XML*",
                "*:\/\/*\/*?WSDL*",
                "*:\/\/*\/*&WSDL*"
            ],
            "js": [
                "js\/Tinycon.js",
                "content_script_parent.js"
            ],
            "all_frames": false
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+1",
                "mac": "Command+1"
            },
            "description": "Activate Extension"
        },
        "pop": {
            "suggested_key": {
                "default": "Ctrl+2",
                "mac": "Command+2"
            },
            "description": "Pop-In \/ Pop-Out"
        },
        "show-technical-names": {
            "suggested_key": {
                "default": "Ctrl+3",
                "mac": "Command+3"
            },
            "description": "Show Technical Names"
        },
        "slashcommand-shortcut": {
            "suggested_key": {
                "default": "Ctrl+4",
                "mac": "Command+4"
            },
            "description": "Run \/shortcut slashcommand"
        },
        "slashcommand": {
            "description": "Open slashcommand popup"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/purify.min.js",
                "inject.js",
                "inject_next.js",
                "inject_parent.js",
                "css\/*",
                "js\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "incognito": "split",
    "action": {
        "default_title": "SN Utils",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/op16.png",
            "24": "images\/op24.png",
            "32": "images\/op32.png",
            "48": "images\/op48.png",
            "128": "images\/op128.png"
        }
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}