Tab Modifier

Take control of your tabs

Tab Modifier là gì?

Tab Modifier là một tiện ích mở rộng Chrome được phát triển bởi chrome-webstore-publisher-furybee, và tính năng chính của nó là "Take control of your tabs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Modifier

Tải xuống các tệp mở rộng Tab Modifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Modifier Tab Modifier
ID hcbgadmbdkiilgpifjgcakjehmafcjai
URL Chính Thức https://chromewebstore.google.com/detail/tab-modifier/hcbgadmbdkiilgpifjgcakjehmafcjai
Mô tả Take control of your tabs
Kích Thước Tệp 87.28 KB
Số Lần Cài Đặt 80,000
Phiên Bản Hiện Tại 0.22.0
Cập Nhật Lần Cuối 2018-03-01
Ngày Phát Hành 2018-03-01
Đánh Giá 4.46/5 Tổng số 331 Đánh Giá
Nhà Phát Triển chrome-webstore-publisher-furybee
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sylouuu/chrome-tab-modifier
URL Trang Trợ Giúp https://github.com/sylouuu/chrome-tab-modifier/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}