Tab Renamer

Take control of your tabs

Tab Renamer là gì?

Tab Renamer là một tiện ích mở rộng Chrome được phát triển bởi Elon Z, 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 Renamer

Tải xuống các tệp mở rộng Tab Renamer 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 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.                    

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

Tên Tab Renamer Tab Renamer
ID kpijejpdbpeaakidlcopnbjohbfimnod
URL Chính Thức https://chromewebstore.google.com/detail/tab-renamer/kpijejpdbpeaakidlcopnbjohbfimnod
Mô tả Take control of your tabs
Kích Thước Tệp 98.48 KB
Số Lần Cài Đặt 238
Phiên Bản Hiện Tại 0.23.0
Cập Nhật Lần Cuối 2021-02-28
Ngày Phát Hành 2021-02-27
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Elon Z
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/imageslr/chrome-tab-modifier
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}