Tab Disguiser
Disguises your tab's favicon and title.
Tab Disguiser क्या है?
Tab Disguiser Mathk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disguises your tab's favicon and title."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Disguiser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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." } } } |