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是由Mogest Industries开发的Chrome扩展程序,该扩展的主要功能是“Quickly go to a Service Desk record by number or two-word phrase from the omnibox”。

扩展截图

screenshot
screenshot
screenshot

下载Service Desk Pleasant Lawyer扩展crx文件

下载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.                    

扩展基本信息

名称 Service Desk Pleasant Lawyer Service Desk Pleasant Lawyer
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"
        }
    ]
}