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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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)
확장 프로그램 기본 정보
이름 | Colors for Websites | Color Changer |
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" ] } ] } |