Colors for Websites | Color Changer
Change the colors of any website directly in your browser!
Was ist Colors for Websites | Color Changer?
Colors for Websites | Color Changer ist eine Chrome-Erweiterung, die von https://colorsforwebsites.com entwickelt wurde, und ihr Hauptmerkmal ist "Change the colors of any website directly in your browser!".
Erweiterungsscreenshots
Colors for Websites | Color Changer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Colors for Websites | Color Changer-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 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) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | commbemobeohbgnbkkbgkbfenokjaihk |
| Offizielle URL | https://chromewebstore.google.com/detail/colors-for-websites-color/commbemobeohbgnbkkbgkbfenokjaihk |
| Beschreibung | Change the colors of any website directly in your browser! |
| Dateigröße | 650 KB |
| Installationsanzahl | 64 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-05-20 |
| Veröffentlichungsdatum | 2022-05-15 |
| Entwickler | https://colorsforwebsites.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://colorsforwebsites.com |
| URL der Datenschutzrichtlinien-Seite | https://colorsforwebsites.com/Privacy |
| Unterstützte Sprachen | 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"
]
}
]
} | |