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 |
| Eメール | [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"
]
}
]
} | |