Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

Tab Label là gì?

Tab Label là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Tab Label 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 allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

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

Tên Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
URL Chính Thức https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
Mô tả This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Kích Thước Tệp 7.58 KB
Số Lần Cài Đặt 252
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-04-28
Ngày Phát Hành 2020-04-25
Đánh Giá 2.14/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}