C&P Chrome Extension

Adds autocomplete functionality to the Clients & Profits web time card

C&P Chrome Extension là gì?

C&P Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi Ryan Bagwell, và tính năng chính của nó là "Adds autocomplete functionality to the Clients & Profits web time card".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng C&P Chrome Extension

Tải xuống các tệp mở rộng C&P Chrome Extension 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên C&P Chrome Extension C&P Chrome Extension
ID jebjdphnbeoigigjbemknhklddadlpna
URL Chính Thức https://chromewebstore.google.com/detail/cp-chrome-extension/jebjdphnbeoigigjbemknhklddadlpna
Mô tả Adds autocomplete functionality to the Clients & Profits web time card
Kích Thước Tệp 355 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.4.13
Cập Nhật Lần Cuối 2019-03-19
Ngày Phát Hành 2019-03-19
Nhà Phát Triển Ryan Bagwell
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}