Tab Modifier

Take control of your tabs

什麼是Tab Modifier?

Tab Modifier是由chrome-webstore-publisher-furybee開發的Chrome擴展程式,該擴展的主要功能是“Take control of your tabs”。

擴展截圖

screenshot
screenshot
screenshot

下載Tab Modifier擴展crx文件

下載Tab Modifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is open-source! Contribute on https://github.com/sylouuu/chrome-tab-modifier

Take control of your tabs:

- Rename tab
- Change tab icon
- Pin tab
- Prevent tab closing
- Unique tab
- Mute tab

You have to define your rules from the Options page. Quick rename can be done by right-clicking anywhere in the page and click on "Rename Tab".

Changelog: https://github.com/sylouuu/chrome-tab-modifier/releases

About Permissions: All websites are required as the extension needs to update each visited website to do its job. I don't store anything about you, your rules are saved on your computer.

The Options page contains a Google Analytics script to help me to know how this page is used. It's totally anonymized. Feel free to contact me on the GitHub project.                    

擴展基本資訊

名稱 Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
官方網址 https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
簡介 Take control of your tabs
檔案大小 87.28 KB
安裝次數 80,000
目前版本 0.22.0
更新時間 2018-03-01
上架時間 2018-03-01
評分 4.46/5 共 331 次評分
開發者 chrome-webstore-publisher-furybee
付費類型 free
擴展官網 https://github.com/sylouuu/chrome-tab-modifier
說明頁面URL https://github.com/sylouuu/chrome-tab-modifier/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Modifier",
    "version": "0.22.0",
    "description": "Take control of your tabs",
    "homepage_url": "https:\/\/github.com\/sylouuu\/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"
    ]
}