Simple Tab Renamer
A simple chrome tab renamer extension
什麼是Simple Tab Renamer?
Simple Tab Renamer是由arshad開發的Chrome擴展程式,該擴展的主要功能是“A simple chrome tab renamer extension”。
擴展截圖
下載Simple Tab Renamer擴展crx文件
下載Simple Tab Renamer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Lets you rename the title of the any tab. Very handy when you feel your tab title need more descriptive or personalized names. Also, the title sticks to the tab even if you navigate to a different page within the same tab! Note: This may not work on websites (Ex: chrome webstore, facebook etc) which do not get affected by this tab title change.
擴展基本資訊
名稱 | Simple Tab Renamer |
ID | ailhpmlejogfdcpoflidmobgkgdemaog |
官方網址 | https://chromewebstore.google.com/detail/simple-tab-renamer/ailhpmlejogfdcpoflidmobgkgdemaog |
簡介 | A simple chrome tab renamer extension |
檔案大小 | 27.37 KB |
安裝次數 | 14,055 |
目前版本 | 2.2 |
更新時間 | 2022-06-02 |
上架時間 | 2017-08-01 |
評分 | 3.51/5 共 59 次評分 |
開發者 | arshad |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.2", "name": "Simple Tab Renamer", "description": "A simple chrome tab renamer extension", "browser_action": { "default_icon": ".\/styles\/extension_icon.png", "default_popup": "extension_content.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": ".\/styles\/extension_icon.png", "48": ".\/styles\/extension_icon.png", "128": ".\/styles\/extension_icon.png" }, "background": { "scripts": [ "background_script.js" ] }, "permissions": [] } |