Colors for Websites | Color Changer
Change the colors of any website directly in your browser!
什么是Colors for Websites | Color Changer?
Colors for Websites | Color Changer是由https://colorsforwebsites.com开发的Chrome扩展程序,该扩展的主要功能是“Change the colors of any website directly in your browser!”。
扩展截图
下载Colors for Websites | Color Changer扩展crx文件
下载Colors for Websites | Color Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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) 扩展基本信息
| 名称 | |
| ID | commbemobeohbgnbkkbgkbfenokjaihk |
| 官方URL | https://chromewebstore.google.com/detail/colors-for-websites-color/commbemobeohbgnbkkbgkbfenokjaihk |
| 简介 | Change the colors of any website directly in your browser! |
| 文件大小 | 650 KB |
| 安装次数 | 64 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-05-20 |
| 上架时间 | 2022-05-15 |
| 开发者 | https://colorsforwebsites.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://colorsforwebsites.com |
| 隐私政策页面URL | https://colorsforwebsites.com/Privacy |
| 支持的语言 | 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"
]
}
]
} | |