Tab Disguiser
Disguises your tab's favicon and title.
Τι είναι το Tab Disguiser;
Το Tab Disguiser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mathk, και η κύρια λειτουργία του είναι "Disguises your tab's favicon and title.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tab Disguiser
Λήψη αρχείων επέκτασης 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." } } } |