ServiceNow DevTools
Developer tool for ServiceNow.(Personal work to ServiceNow)
ServiceNow DevTools क्या है?
ServiceNow DevTools Erik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Developer tool for ServiceNow.(Personal work to ServiceNow)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ServiceNow DevTools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
- Check current logged in user, selected Update Set, and Scope. - View your last 30 updates, browse to related record. (Admin role only) - Search tables and open list, dictionary or schema map. - A separate page is used to query the table. - Save record with CTRL-S In Studio. - Pop In / Pop Up ServiceNow Current Page. - Add table favorites - Support for Studio
एक्सटेंशन की मूल जानकारी
नाम | ServiceNow DevTools |
ID | cdfllbbjepkdmlkijlmjfhpmfolgonkn |
आधिकारिक URL | https://chromewebstore.google.com/detail/servicenow-devtools/cdfllbbjepkdmlkijlmjfhpmfolgonkn |
विवरण | Developer tool for ServiceNow.(Personal work to ServiceNow) |
फ़ाइल का आकार | 344 KB |
स्थापना संख्या | 210 |
वर्तमान संस्करण | 2.1.5 |
अंतिम अपडेट | 2022-02-19 |
प्रकाशन तिथि | 2020-12-02 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | Erik |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ServiceNow DevTools", "short_name": "SN DevTools", "description": "Developer tool for ServiceNow.(Personal work to ServiceNow)", "author": "Eric Yang", "version": "2.1.5", "permissions": [ "tabs", "https:\/\/*.service-now.com\/*", "storage" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.service-now.com\/*" ], "exclude_matches": [ "https:\/\/signon.service-now.com\/*", "https:\/\/*.service-now.com\/*XML=*" ], "css": [ "content\/css\/run_sys_scripts.css" ], "js": [ "js\/jquery.js", "content\/js\/content_script_frame.js" ], "all_frames": true } ], "commands": { "pop": { "suggested_key": { "default": "Ctrl+2", "mac": "Command+2" }, "description": "Pop-In \/ Pop-Out" } }, "page_action": { "default_title": "ServiceNow DevTools", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "show_matches": [ "https:\/\/*.service-now.com\/*" ] }, "web_accessible_resources": [ "js\/inject.js" ], "manifest_version": 2 } |