Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ServiceNow tool belt", "version": "6.1.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": { "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": { "suggested_key": { "default": "Alt+B" }, "description": "Open a background script window on current instance" } }, "background": { "service_worker": "background\/background.js" }, "action": { "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:\/\/*\/*" ], "js": [ "content-script\/purify.js", "content-script\/snowbelt-cs.js" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "permissions": [ "tabs", "storage", "cookies" ], "optional_permissions": [ "downloads" ], "host_permissions": [ "https:\/\/*.service-now.com\/*" ], "optional_host_permissions": [ "https:\/\/*\/*" ], "browser_specific_settings": { "gecko": { "id": "{db3d7d07-a7d3-4d87-9f39-4ef22214acbd}" } }, "web_accessible_resources": [ { "resources": [ "\/content-script\/getSession.js", "\/css\/snowbelt.css" ], "matches": [ "*:\/\/*\/*" ] } ] }