ServiceNow tool belt

A set of tools for ServiceNow developers and administrators

ServiceNow tool beltคืออะไร?

ServiceNow tool belt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย syvo และคุณลักษณะหลักของมันคือ "A set of tools for ServiceNow developers and administrators"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ServiceNow tool belt

ดาวน์โหลดไฟล์ส่วนขยาย ServiceNow tool belt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}