Colors for Websites | Color Changer
Change the colors of any website directly in your browser!
Wat is Colors for Websites | Color Changer?
Colors for Websites | Color Changer is een Chrome-extensie ontwikkeld door https://colorsforwebsites.com, en de belangrijkste functie is "Change the colors of any website directly in your browser!".
Extensie Screenshots
Download het CRX-bestand van de extensie Colors for Websites | Color Changer
Download Colors for Websites | Color Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | Colors for Websites | Color Changer |
ID | commbemobeohbgnbkkbgkbfenokjaihk |
Officiële URL | https://chromewebstore.google.com/detail/colors-for-websites-color/commbemobeohbgnbkkbgkbfenokjaihk |
Beschrijving | Change the colors of any website directly in your browser! |
Bestandsgrootte | 650 KB |
Aantal Installaties | 64 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-05-20 |
Publicatiedatum | 2022-05-15 |
Ontwikkelaar | https://colorsforwebsites.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://colorsforwebsites.com |
URL van de Privacybeleid Pagina | https://colorsforwebsites.com/Privacy |
Ondersteunde Talen | 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" ] } ] } |