C&P Chrome Extension

Adds autocomplete functionality to the Clients & Profits web time card

什麼是C&P Chrome Extension?

C&P Chrome Extension是由Ryan Bagwell開發的Chrome擴展程式,該擴展的主要功能是“Adds autocomplete functionality to the Clients & Profits web time card”。

擴展截圖

screenshot

下載C&P Chrome Extension擴展crx文件

下載C&P Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Now you no longer have to remember complex job numbers or cumbersome task IDs.

1. Set your Clients & Profits web url in the extension's options page. File > Preferences > Extensions, then click the options link under the extension name

2. Now, when you click the C&P icon in the top-right corner, it will take you to your time card.

3. Start typing some characters in the "Job" field, and a list of job titles will appear.

4. After selecting a job, you'll be able to see a list of available tasks that are associated with that job.                    

擴展基本資訊

名稱 C&P Chrome Extension C&P Chrome Extension
ID jebjdphnbeoigigjbemknhklddadlpna
官方網址 https://chromewebstore.google.com/detail/cp-chrome-extension/jebjdphnbeoigigjbemknhklddadlpna
簡介 Adds autocomplete functionality to the Clients & Profits web time card
檔案大小 355 KB
安裝次數 14
目前版本 1.4.13
更新時間 2019-03-19
上架時間 2019-03-19
開發者 Ryan Bagwell
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "C&P Chrome Extension",
    "version": "1.4.13",
    "manifest_version": 2,
    "description": "Adds autocomplete functionality to the Clients & Profits web time card",
    "icons": {
        "16": "dist\/img\/icon.logo.16.png",
        "48": "dist\/img\/icon.logo.48.png",
        "128": "dist\/img\/icon.logo.128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "dist\/img\/icon.logo.19.png",
            "38": "dist\/img\/icon.logo.38.png"
        },
        "default_title": "Clients & Profits",
        "name": "Clients & Profits"
    },
    "options_page": "dist\/html\/settings.html",
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "dist\/browseraction.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "dist\/controller.js"
            ],
            "css": [
                "dist\/css\/jquery-ui\/jquery-ui.min.css",
                "dist\/css\/jquery-ui\/theme.css",
                "dist\/css\/ui.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/globalaccess.js",
        "dist\/img\/loading.svg"
    ]
}