Google Music Colorizer
Change the colors of your Google Play Music window.
Qu'est-ce que Google Music Colorizer ?
Google Music Colorizer est une extension Chrome développée par http://bugg.co, et sa fonction principale est "Change the colors of your Google Play Music window.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Music Colorizer
Téléchargez les fichiers d'extension Google Music Colorizer 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: * Enable Dark mode on Google Play Music for less strain on the eyes * Change your Google Play Music accent color to whatever you'd like to make it how you want it. * Enable "Rainbow mode" for animated accent colors!
Informations de Base sur l'Extension
Nom | |
ID | ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
URL Officiel | https://chrome.google.com/webstore/detail/google-music-colorizer/ebkhhlmkbdchllbhfaeemhbdbgljmnlp |
Description | Change the colors of your Google Play Music window. |
Taille du Fichier | 153 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2018-08-19 |
Date de Publication | 2018-08-19 |
Développeur | http://bugg.co |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://bugg.co/ |
URL de la Page de Politique de Confidentialité | https://bugg.co/privacy.php |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Music Colorizer", "version": "1.0.1", "description": "Change the colors of your Google Play Music window.", "author": "bugfroggy", "homepage_url": "https:\/\/bugg.co\/", "offline_enabled": true, "icons": { "16": "img\/logo-16.png", "19": "img\/logo-19.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" }, "short_name": "GM Color", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage", "declarativeContent", "activeTab", "https:\/\/play.google.com\/music\/listen" ], "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/listen*" ], "js": [ "chroma.min.js", "target_data.js", "init.js" ] } ], "page_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "img\/logo-16.png", "19": "img\/logo-19.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" } } } |