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”。
擴展截圖
下載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 |
ID | lgoehggcekcijojdfdifnfknonmeillp |
官方網址 | 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" } } } } |