Tab Rename

Adds the ability to change the title of your tabs

什么是Tab Rename?

Tab Rename是由Realyze开发的Chrome扩展程序,该扩展的主要功能是“Adds the ability to change the title of your tabs”。

扩展截图

screenshot
screenshot

下载Tab Rename扩展crx文件

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

扩展使用说明

                        This is a simple extension to rename the active tab.

It works by changing the title attribute of the DOM.                    

扩展基本信息

名称 Tab Rename Tab Rename
ID lgoehggcekcijojdfdifnfknonmeillp
官方URL https://chromewebstore.google.com/detail/tab-rename/lgoehggcekcijojdfdifnfknonmeillp
简介 Adds the ability to change the title of your tabs
文件大小 12.24 KB
安装次数 551
当前版本 1.0
更新时间 2021-02-23
上架时间 2021-02-22
评分 3.17/5 共6次评分
开发者 Realyze
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Rename",
    "description": "Adds the ability to change the title of your tabs",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "icons\/tag16.png",
        "48": "icons\/pen-icon48.png",
        "128": "icons\/pen-icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/tag16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "rename.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    }
}