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.」です。

拡張機能のスクリーンショット

screenshot

Tab Colorizer | Customize your tab's icon!拡張機能のCRXファイルをダウンロード

Tab Colorizer | Customize your tab's icon!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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