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
官方網址 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
電子郵箱 [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"
    ]
}