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?

Tab Label是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…”。

扩展截图

screenshot
screenshot

下载Tab Label扩展crx文件

下载Tab Label扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
官方URL https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
简介 This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
文件大小 7.58 KB
安装次数 252
当前版本 0.0.1
更新时间 2020-04-28
上架时间 2020-04-25
评分 2.14/5 共7次评分
开发者 Unknown
付费类型 free
支持的语言 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"
    ]
}