Tab Colorizer | Customize your tab's icon!
Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.
Tab Colorizer | Customize your tab's icon!란 무엇입니까?
Tab Colorizer | Customize your tab's icon!은(는) https://tabcolorizer.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors."입니다.
확장 프로그램 스크린샷
Tab Colorizer | Customize your tab's icon! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
On any tab you have open, you can change the color of the tab's icon to any color you've defined. Giving you the control to highlight important tabs and never lose focus of which one is which. Using the Customizer tool, you can add as many, or as little, color choices as you desire. Pick the colors you like, in any order that works for you!
확장 프로그램 기본 정보
이름 | Tab Colorizer | Customize your tab's icon! |
ID | nkdjooaecafkkldnkaokhpaindamlngj |
공식 URL | https://chromewebstore.google.com/detail/tab-colorizer-customize-y/nkdjooaecafkkldnkaokhpaindamlngj |
설명 | Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors. |
파일 크기 | 16.95 MB |
설치 횟수 | 11,417 |
현재 버전 | 0.9 |
최근 업데이트 | 2022-11-13 |
출시 날짜 | 2018-03-19 |
평점 | 2.45/5 총 86 개의 평점 |
개발자 | https://tabcolorizer.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://tabcolorizer.io |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Colorizer | Customize your tab's icon!", "short_name": "Tab Icon Colorizer", "description": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.", "version": "0.9", "author": "Mathew Komyanek", "manifest_version": 2, "options_page": "options.html", "web_accessible_resources": [ "options.html" ], "background": { "scripts": [ "js\/background_script.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/tabColorizer_16.png", "default_title": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.", "default_popup": "popup.html" }, "commands": { "flip-color-forward": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "Flip colors" } }, "icons": { "16": "images\/tabColorizer_16.png", "32": "images\/tabColorizer_32.png", "48": "images\/tabColorizer_48.png", "128": "images\/tabColorizer_128.png" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/content_script.js" ] } ] } |