NoDogeTweeter
Revert the Doge logo and restore the original Twitter logo.
Qu'est-ce que NoDogeTweeter ?
NoDogeTweeter est une extension Chrome développée par Blue Bird Back, et sa fonction principale est "Revert the Doge logo and restore the original Twitter logo.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NoDogeTweeter
Téléchargez les fichiers d'extension NoDogeTweeter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
NoDogeTweeter is a Chrome extension that reverts the 𝕏 logo back to the original Twitter logo and changes the favicon back to its original design. This extension is useful if you prefer the original Twitter aesthetics over the changes made by Elon Musk. Features + Automatically detects the 𝕏 logo on Twitter and replaces it with the original Twitter logo. + Reverts the favicon back to its original design. + Preserves the original HTML structure. Instructions for use: + Install the NoDogeTweeter extension from the Chrome Web Store. + Visit twitter.com or refresh any open Twitter pages (press F5) to see the original Twitter logo in the top left corner. + The extension icon will appear blue on Twitter and gray on other websites, showing that it only affects Twitter pages. Please note: This extension is not affiliated with or endorsed by Twitter, Inc.
Informations de Base sur l'Extension
Nom | NoDogeTweeter |
ID | afahecnmmidcbakdlhiedljihbgeonci |
URL Officiel | https://chromewebstore.google.com/detail/nodogetweeter/afahecnmmidcbakdlhiedljihbgeonci |
Description | Revert the Doge logo and restore the original Twitter logo. |
Taille du Fichier | 1.37 MB |
Nombre d'Installations | 80 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2023-07-25 |
Date de Publication | 2023-04-08 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Blue Bird Back |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://bluebirdback.com/2023/08/03/bluebirdback-chrome-extension-privacy-policy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NoDogeTweeter", "version": "1.1.0", "description": "Revert the Doge logo and restore the original Twitter logo.", "permissions": [ "activeTab", "tabs" ], "action": { "default_popup": "", "default_icon": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } } |