ColorfulPWA

This extension allows you to choose web application titlebar color.

Was ist ColorfulPWA?

ColorfulPWA ist eine Chrome-Erweiterung, die von antoinel12.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to choose web application titlebar color.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ColorfulPWA-Erweiterungs-CRX-Datei herunterladen

Laden Sie ColorfulPWA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ColorfulPWA ColorfulPWA
ID kecpjkejogdfaibpnfeomdiodibnojll
Offizielle URL https://chromewebstore.google.com/detail/colorfulpwa/kecpjkejogdfaibpnfeomdiodibnojll
Beschreibung This extension allows you to choose web application titlebar color.
Dateigröße 135 KB
Installationsanzahl 618
Aktuelle Version 1.0.0
Letztes Update 2020-06-09
Veröffentlichungsdatum 2020-06-08
Bewertung 4.82/5 Insgesamt 17 Bewertungen
Entwickler antoinel12.com
Zahlungsart free
Erweiterungswebsite https://github.com/antoinel12/ColorfulPWA
Hilfeseite URL https://github.com/antoinel12/ColorfulPWA/issues
Unterstützte Sprachen 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"
        }
    ]
}