ServiceNow Lookup
Add Service-Now Functionality to Chrome for Service-Now.
ServiceNow Lookup क्या है?
ServiceNow Lookup DM Productions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add Service-Now Functionality to Chrome for Service-Now."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ServiceNow Lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allows for the quick access to Service-Now tickets through a quick reference on the Address Bar (Typing 'sn' on the Address Bar followed by a space) or through a context menu when selecting text on a site. This allows you to get into a RFC, INC or other ticket quickly without having to manually navigate through your Service-Now site. Recognized Ticket Prefixes: * RFC - Change Request * INC - Incident * CTASK - Change Task * REQ - SC Request * TASK - SC Task * RITM - SC Request Item * KB - Knowledge Base Item * PRB - Problem Anything that does not match one of these prefixes will automatically be placed into the Service-Now text search interface to try and find any matches. Once you have installed this application you will need to configure your Service-Now hostname for accessing your interface. (EG company.service-now.com) This can be configured under 'Extensions' by clicking the 'Options' button for the Service-Now Lookup Extension.
एक्सटेंशन की मूल जानकारी
नाम | ServiceNow Lookup |
ID | lalhboihpjkhmcalhjlkehfnphpjebma |
आधिकारिक URL | https://chromewebstore.google.com/detail/servicenow-lookup/lalhboihpjkhmcalhjlkehfnphpjebma |
विवरण | Add Service-Now Functionality to Chrome for Service-Now. |
फ़ाइल का आकार | 17.07 KB |
स्थापना संख्या | 2,817 |
वर्तमान संस्करण | 1.8 |
अंतिम अपडेट | 2014-10-31 |
प्रकाशन तिथि | 2014-10-31 |
रेटिंग | 4.22/5 कुल 18 रेटिंग्स |
डेवलपर | DM Productions |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://groups.google.com/forum/#!forum/sn-lookup-extension-discussions |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ServiceNow Lookup", "description": "Add Service-Now Functionality to Chrome for Service-Now.", "version": "1.8", "permissions": [ "contextMenus", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "background": { "scripts": [ "background.js" ] }, "omnibox": { "keyword": "sn" }, "options_page": "options.html", "icons": { "16": "sn-lookup16.png", "48": "sn-lookup48.png", "128": "sn-lookup128.png" }, "manifest_version": 2 } |