Colors for Websites | Color Changer
Change the colors of any website directly in your browser!
Cos'è Colors for Websites | Color Changer?
Colors for Websites | Color Changer è un'estensione di Chrome sviluppata da https://colorsforwebsites.com, e la sua funzione principale è "Change the colors of any website directly in your browser!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Colors for Websites | Color Changer
Scarica i file di estensione Colors for Websites | Color Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension analyzes the colors of a webpage and gives you the option to change each color individually. You can change the colors with a color picker to find out the perfect palette. Or you just want to analyze if every color matches your brand colors. FEATURES • Find all colors of a website • works with inline and css styles • choose which colors you want to change • works with any website • works also on localhost (Note: this is a beta version, fell free to write us for feedback, bugs and suggestions)
Informazioni di Base sull'Estensione
Nome | Colors for Websites | Color Changer |
ID | commbemobeohbgnbkkbgkbfenokjaihk |
URL Ufficiale | https://chromewebstore.google.com/detail/colors-for-websites-color/commbemobeohbgnbkkbgkbfenokjaihk |
Descrizione | Change the colors of any website directly in your browser! |
Dimensione del File | 650 KB |
Conteggio Installazioni | 64 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-05-20 |
Data di Pubblicazione | 2022-05-15 |
Sviluppatore | https://colorsforwebsites.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://colorsforwebsites.com |
URL della Pagina della Politica sulla Privacy | https://colorsforwebsites.com/Privacy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Colors for Websites | Color Changer", "description": "Change the colors of any website directly in your browser!", "version": "1.0", "manifest_version": 3, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "index.html", "default_icon": { "16": "\/images\/logo.png", "32": "\/images\/logo.png", "48": "\/images\/logo.png", "128": "\/images\/logo.png" } }, "icons": { "16": "\/images\/logo.png", "32": "\/images\/logo.png", "48": "\/images\/logo.png", "128": "\/images\/logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ], "css": [ "variables.css" ] } ] } |