Tab Renamer

Take control of your tabs

Tab Renamerとは何ですか?

Tab RenamerはElon Zによって開発されたChromeの拡張機能で、その主な機能は「Take control of your tabs」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        This is a fork version of Tab Modifier with more features/bugfix.
1. [New Feature] Support unique rules by url,
2. [New Feature] Disable a rule temporarily,
3. [New Feature] Allow to hide right-click menu item.
4. [Bug Fix] Selector grammar not working when element is lazy-loaded.                    

拡張機能の基本情報

名前 Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
公式URL https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
説明 Take control of your tabs
ファイルサイズ 98.48 KB
インストール数 238
現在のバージョン 0.23.0
最終更新日 2021-02-28
公開日 2021-02-27
評価 3.50/5 合計 2 レビュー
開発者 Elon Z
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/imageslr/chrome-tab-modifier
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "version": "0.23.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/imageslr\/chrome-tab-modifier",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/icon_48.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus",
        "alarms",
        "notifications"
    ]
}