Simple Tab Renamer

A simple chrome tab renamer extension

Simple Tab Renamerとは何ですか?

Simple Tab Renamerはarshadによって開発されたChromeの拡張機能で、その主な機能は「A simple chrome tab renamer extension」です。

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

screenshot

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

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

拡張機能の使用方法

                        Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. 
Also, the title sticks to the tab even if you navigate to a different page within the same tab!
Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.                    

拡張機能の基本情報

名前 Simple Tab Renamer Simple Tab Renamer
ID ailhpmlejogfdcpoflidmobgkgdemaog
公式URL https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog
説明 A simple chrome tab renamer extension
ファイルサイズ 27.37 KB
インストール数 14,055
現在のバージョン 2.2
最終更新日 2022-06-02
公開日 2017-08-01
評価 3.51/5 合計 59 レビュー
開発者 arshad
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.2",
    "name": "Simple Tab Renamer",
    "description": "A simple chrome tab renamer extension",
    "browser_action": {
        "default_icon": ".\/styles\/extension_icon.png",
        "default_popup": "extension_content.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/styles\/extension_icon.png",
        "48": ".\/styles\/extension_icon.png",
        "128": ".\/styles\/extension_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "permissions": []
}