Better Twitter
Make Twitter great again by removing unwanted contents from your timeline.
Τι είναι το Better Twitter;
Το Better Twitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον :Dream, και η κύρια λειτουργία του είναι "Make Twitter great again by removing unwanted contents from your timeline.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better Twitter
Λήψη αρχείων επέκτασης Better Twitter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The current settings allow you to hide the following elements: - view counts - tweet analytics - share buttons - ads & promoted tweets - promoted account (who to follow section only) - 'You might like' tweets Please note that in case of any new UI changes on Twitter, it may take 1-3 days for our extension to update. Feels free to leave feedback and suggestions, as I will be continue improving the extension and add more features later on. Changelog: v.10.3 (18/01/2023) - Added new option to hide 'You might like' tweets v1.0.2 (15/01/2023) - Updated to correspond to new UI changes - Added a new option to hide tweet analytics
Βασικές Πληροφορίες Επέκτασης
Όνομα | Better Twitter |
ID | pdpffnhppidmpbfpflnclfkfgcgimblo |
Επίσημο URL | https://chromewebstore.google.com/detail/better-twitter/pdpffnhppidmpbfpflnclfkfgcgimblo |
Περιγραφή | Make Twitter great again by removing unwanted contents from your timeline. |
Μέγεθος Αρχείου | 30.66 KB |
Αριθμός Εγκαταστάσεων | 41 |
Τρέχουσα Έκδοση | 1.0.3 |
Τελευταία Ενημέρωση | 2023-01-19 |
Ημερομηνία Δημοσίευσης | 2022-12-26 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | :Dream |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Better Twitter", "version": "1.0.3", "description": "Make Twitter great again by removing unwanted contents from your timeline.", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "contentScript.js" ] } ], "action": { "default_title": "Better Twitter", "default_popup": "popup.html" }, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |