Tab Disguiser
Disguises your tab's favicon and title.
Apa itu Tab Disguiser?
Tab Disguiser adalah ekstensi Chrome yang dikembangkan oleh Mathk, dan fitur utamanya adalah "Disguises your tab's favicon and title.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tab Disguiser
Unduh file ekstensi Tab Disguiser dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Tab Disguiser |
ID | goaelnlldimhbhipidknnkijnmfgddoc |
URL Resmi | https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc |
Deskripsi | Disguises your tab's favicon and title. |
Ukuran File | 40.48 KB |
Jumlah Instalasi | 94 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2023-03-23 |
Tanggal Publikasi | 2023-03-20 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Mathk |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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." } } } |