Tab Renamer

Customize the title of your chrome tabs

Tab Renamerとは何ですか?

Tab RenamerはMujtaba Al-Tameemiによって開発されたChromeの拡張機能で、その主な機能は「Customize the title of your chrome tabs」です。

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

screenshot

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

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

拡張機能の使用方法

                        If you want to customize the title of your tabs, this extension is for you. 

There are 3 ways to use it:
1. Click on the extension's icon in the top right corner of your browser.
2. Use the shortcut "control/command + B".
3. Type "RN" in chrome's address bar and press tab.                    

拡張機能の基本情報

名前 Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
公式URL https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
説明 Customize the title of your chrome tabs
ファイルサイズ 13.15 KB
インストール数 217
現在のバージョン 1.0.2
最終更新日 2016-12-24
公開日 2016-12-23
評価 2.89/5 合計 9 レビュー
開発者 Mujtaba Al-Tameemi
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "short_name": "Tab Renamer",
    "author": "Mujtaba Al-Tameemi",
    "description": "Customize the title of your chrome tabs",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "omnibox": {
        "keyword": "rn"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}