Colors for Websites | Color Changer
Change the colors of any website directly in your browser!
Vad är Colors for Websites | Color Changer?
Colors for Websites | Color Changer är en Chrome-tillägg utvecklad av https://colorsforwebsites.com, och dess huvudfunktion är "Change the colors of any website directly in your browser!".
Tilläggsskärmbilder
Ladda ner Colors for Websites | Color Changer-förlängningens CRX-fil
Ladda ner Colors for Websites | Color Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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)
Grundläggande Information om Tillägg
Namn | Colors for Websites | Color Changer |
ID | commbemobeohbgnbkkbgkbfenokjaihk |
Officiell webbadress | https://chromewebstore.google.com/detail/colors-for-websites-color/commbemobeohbgnbkkbgkbfenokjaihk |
Beskrivning | Change the colors of any website directly in your browser! |
Filstorlek | 650 KB |
Antal Installationer | 64 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-05-20 |
Publiceringsdatum | 2022-05-15 |
Utvecklare | https://colorsforwebsites.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://colorsforwebsites.com |
URL till Sekretesspolicy Sidan | https://colorsforwebsites.com/Privacy |
Stödda Språk | 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" ] } ] } |