Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

Tab Labelとは何ですか?

Tab LabelはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…」です。

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

screenshot
screenshot

Tab Label拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

拡張機能の基本情報

名前 Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
公式URL https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
説明 This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
ファイルサイズ 7.58 KB
インストール数 252
現在のバージョン 0.0.1
最終更新日 2020-04-28
公開日 2020-04-25
評価 2.14/5 合計 7 レビュー
開発者 Unknown
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}