TwitterBird
Changes the "X" brand back to Twitter
Τι είναι το TwitterBird;
Το TwitterBird είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://labystudio.de, και η κύρια λειτουργία του είναι "Changes the "X" brand back to Twitter".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης TwitterBird
Λήψη αρχείων επέκτασης TwitterBird σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This add-on reverts all logos of the Twitter/X website back to the Twitter bird. It changes every single X logo, including the icon in the browser tab, the logout screen, and the boot screen. Additionally, it modifies the avatar, banner, name, handle and badge of the official Twitter accounts. Please be aware that Twitter is currently changing its website every day. I'm trying to keep the add-on up to date with the latest changes Elon Musk is making to Twitter/X.
Βασικές Πληροφορίες Επέκτασης
Όνομα | TwitterBird |
ID | cglkhpbplnpobkhgecadnemehdaphahh |
Επίσημο URL | https://chromewebstore.google.com/detail/twitterbird/cglkhpbplnpobkhgecadnemehdaphahh |
Περιγραφή | Changes the "X" brand back to Twitter |
Μέγεθος Αρχείου | 1.72 MB |
Αριθμός Εγκαταστάσεων | 213 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2023-07-27 |
Ημερομηνία Δημοσίευσης | 2023-07-25 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | https://labystudio.de |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TwitterBird", "description": "Changes the \"X\" brand back to Twitter", "short_name": "TwitterBird", "manifest_version": 3, "version": "1.2", "icons": { "16": "assets\/icon\/icon16.png", "164": "assets\/icon\/icon164.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ], "js": [ "js\/Injector.js", "js\/controllers\/SvgLogoInjector.js", "js\/controllers\/FaviconInjector.js", "js\/controllers\/TwitterAccountInjector.js", "js\/controllers\/TitleInjector.js", "js\/TwitterBird.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ] } ] } |