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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}