ServiceNow Lookup
Add Service-Now Functionality to Chrome for Service-Now.
ServiceNow Lookup là gì?
ServiceNow Lookup là một tiện ích mở rộng Chrome được phát triển bởi DM Productions, và tính năng chính của nó là "Add Service-Now Functionality to Chrome for Service-Now.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ServiceNow Lookup
Tải xuống các tệp mở rộng ServiceNow Lookup dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ServiceNow Lookup |
ID | lalhboihpjkhmcalhjlkehfnphpjebma |
URL Chính Thức | https://chromewebstore.google.com/detail/servicenow-lookup/lalhboihpjkhmcalhjlkehfnphpjebma |
Mô tả | Add Service-Now Functionality to Chrome for Service-Now. |
Kích Thước Tệp | 17.07 KB |
Số Lần Cài Đặt | 2,817 |
Phiên Bản Hiện Tại | 1.8 |
Cập Nhật Lần Cuối | 2014-10-31 |
Ngày Phát Hành | 2014-10-31 |
Đánh Giá | 4.22/5 Tổng số 18 Đánh Giá |
Nhà Phát Triển | DM Productions |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://groups.google.com/forum/#!forum/sn-lookup-extension-discussions |
Ngôn Ngữ Được Hỗ Trợ | 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 } |