C&P Chrome Extension

Adds autocomplete functionality to the Clients & Profits web time card

Qu'est-ce que C&P Chrome Extension ?

C&P Chrome Extension est une extension Chrome développée par Ryan Bagwell, et sa fonction principale est "Adds autocomplete functionality to the Clients & Profits web time card".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension C&P Chrome Extension

Téléchargez les fichiers d'extension C&P Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom C&P Chrome Extension C&P Chrome Extension
ID jebjdphnbeoigigjbemknhklddadlpna
URL Officiel https://chromewebstore.google.com/detail/cp-chrome-extension/jebjdphnbeoigigjbemknhklddadlpna
Description Adds autocomplete functionality to the Clients & Profits web time card
Taille du Fichier 355 KB
Nombre d'Installations 14
Version Actuelle 1.4.13
Dernière Mise à Jour 2019-03-19
Date de Publication 2019-03-19
Développeur Ryan Bagwell
Type de Paiement free
Langues Prises en Charge 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"
    ]
}