Tab Disguiser
Disguises your tab's favicon and title.
什么是Tab Disguiser?
Tab Disguiser是由Mathk开发的Chrome扩展程序,该扩展的主要功能是“Disguises your tab's favicon and title.”。
扩展截图
下载Tab Disguiser扩展crx文件
下载Tab Disguiser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tab Disguiser is a chrome extension that will mask your tab title and favicon to a specific website of your choosing. This makes it so when the tab is not open, it looks like a different website. With this extension, you can also abort your current tab to another tab quickly. To edit the websites the extension uses, press the extensions button and select "Tab Disguiser." Keybinds: Abort Tab- Alt+Q Disguise Tab- Alt+R
扩展基本信息
名称 | Tab Disguiser |
ID | goaelnlldimhbhipidknnkijnmfgddoc |
官方URL | https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc |
简介 | Disguises your tab's favicon and title. |
文件大小 | 40.48 KB |
安装次数 | 94 |
当前版本 | 1.0.1 |
更新时间 | 2023-03-23 |
上架时间 | 2023-03-20 |
评分 | 5.00/5 共1次评分 |
开发者 | Mathk |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Disguiser", "version": "1.0.1", "description": "Disguises your tab's favicon and title.", "manifest_version": 3, "author": "Mathk", "permissions": [ "storage", "scripting" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Tab Disguiser" }, "commands": { "abort": { "suggested_key": { "default": "Alt+Q" }, "description": "Aborts open tab and replaces it." }, "abort-last": { "suggested_key": { "default": "Alt+A" }, "description": "Aborts the previous tab and replaces it." }, "disguise": { "suggested_key": { "default": "Alt+R" }, "description": "Disguises current tab." } } } |