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 |
Eメール | [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." } } } |