Tab Disguiser
Disguises your tab's favicon and title.
What is Tab Disguiser?
Tab Disguiser is a Chrome extension developed by Mathk, and its main feature is "Disguises your tab's favicon and title.".
Extension Screenshots
Download Tab Disguiser Extension CRX File
Download Tab Disguiser extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Tab Disguiser |
ID | goaelnlldimhbhipidknnkijnmfgddoc |
Official URL | https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc |
Description | Disguises your tab's favicon and title. |
File Size | 40.48 KB |
Installation Count | 94 |
Current Version | 1.0.1 |
Last Updated | 2023-03-23 |
Publish Date | 2023-03-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Mathk |
[email protected] | |
Payment Type | free |
Supported Languages | 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." } } } |