ServiceNow tool belt
A set of tools for ServiceNow developers and administrators
ServiceNow tool belt क्या है?
ServiceNow tool belt syvo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A set of tools for ServiceNow developers and administrators"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ServiceNow tool belt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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:\/\/*\/*", " |