ColorfulPWA

This extension allows you to choose web application titlebar color.

Qu'est-ce que ColorfulPWA ?

ColorfulPWA est une extension Chrome développée par antoinel12.com, et sa fonction principale est "This extension allows you to choose web application titlebar color.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ColorfulPWA

Téléchargez les fichiers d'extension ColorfulPWA 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

                        This extension allows you to choose web application titlebar color.

***This extension requires that you create shortcut as an app (in single window) for the website you are intending to change the color.*** 
See https://support.google.com/chrome_webstore/answer/3060053?hl=en for more details.

It is especially useful web the web developper did not specified the color for his website and when the color inferred by Chrome is ugly.

You can also use it to easily distinguish windows when you have lots of them opened or when you want to quickly discriminate the current environment (DEV, TEST or PRODUCTION) you are working on.

No data is sent to a webserver, all informations are stored locally on your device.

It is licensed under AGPL-3.0. More details and source code are available on extension's page on GitHub.

For support please open a bug on GitHub.                    

Informations de Base sur l'Extension

Nom ColorfulPWA ColorfulPWA
ID kecpjkejogdfaibpnfeomdiodibnojll
URL Officiel https://chromewebstore.google.com/detail/colorfulpwa/kecpjkejogdfaibpnfeomdiodibnojll
Description This extension allows you to choose web application titlebar color.
Taille du Fichier 135 KB
Nombre d'Installations 618
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-06-09
Date de Publication 2020-06-08
Évaluation 4.82/5 Total 17 Évaluations
Développeur antoinel12.com
Type de Paiement free
Site Web de l'Extension https://github.com/antoinel12/ColorfulPWA
URL de la Page d'Aide https://github.com/antoinel12/ColorfulPWA/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ColorfulPWA",
    "description": "This extension allows you to choose web application titlebar color.",
    "version": "1.0.0",
    "author": "antoinel12",
    "homepage_url": "https:\/\/github.com\/antoinel12\/ColorfulPWA",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_end"
        }
    ]
}