Tab Namer

Renames tabs to: " ".

什么是Tab Namer?

Tab Namer是由James Stout开发的Chrome扩展程序,该扩展的主要功能是“Renames tabs to: " ".”。

下载Tab Namer扩展crx文件

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

扩展使用说明

                        Renames all tabs to follow a standard format: "  ". It is simple and reliable, but if you are looking for something configurable then this is not the extension for you.                    

扩展基本信息

名称 Tab Namer Tab Namer
ID mhlkchmeabcgmaedklpajbokfaapcgoo
官方URL https://chromewebstore.google.com/detail/tab-namer/mhlkchmeabcgmaedklpajbokfaapcgoo
简介 Renames tabs to: " ".
文件大小 4.84 KB
安装次数 31
当前版本 1.2
更新时间 2018-05-26
上架时间 2018-05-26
评分 3.67/5 共3次评分
开发者 James Stout
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Namer",
    "version": "1.2",
    "description": "Renames tabs to: \"  \".",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}