Service Desk Pleasant Lawyer
Quickly go to a Service Desk record by number or two-word phrase from the omnibox
Τι είναι το Service Desk Pleasant Lawyer;
Το Service Desk Pleasant Lawyer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mogest Industries, και η κύρια λειτουργία του είναι "Quickly go to a Service Desk record by number or two-word phrase from the omnibox".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Service Desk Pleasant Lawyer
Λήψη αρχείων επέκτασης Service Desk Pleasant Lawyer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Use this extension with Citrix GoToAssist Service Desk to quickly to go a record. From the omnibox (also known as the address bar) you can specify a record number. For example, entering "b 1234" will display record #1234. You can also enter a "record phrase", a unique two-word phrase that's easier to remember than the number. For example, entering "b loose goose" will take you to record #200. You find out what the record phrase is for a given record number by looking next to the record number on the Service Desk web site.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cbakkidlcnemoecaghbmnnkpacpfgfjh |
Επίσημο URL | https://chromewebstore.google.com/detail/service-desk-pleasant-law/cbakkidlcnemoecaghbmnnkpacpfgfjh |
Περιγραφή | Quickly go to a Service Desk record by number or two-word phrase from the omnibox |
Μέγεθος Αρχείου | 13.32 KB |
Αριθμός Εγκαταστάσεων | 35 |
Τρέχουσα Έκδοση | 0.6.2 |
Τελευταία Ενημέρωση | 2016-09-26 |
Ημερομηνία Δημοσίευσης | 2016-09-25 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Mogest Industries |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Service Desk Pleasant Lawyer", "description": "Quickly go to a Service Desk record by number or two-word phrase from the omnibox", "version": "0.6.2", "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "omnibox": { "keyword": "b" }, "content_scripts": [ { "matches": [ "https:\/\/desk.gotoassist.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |