Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Τι είναι το Verified Tweets Only;
Το Verified Tweets Only είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://verifiedtweetsonly.com, και η κύρια λειτουργία του είναι "Simple extension to only show verified tweets on Twitter".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Verified Tweets Only
Λήψη αρχείων επέκτασης Verified Tweets Only σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Simple extension to only show verified tweets on Twitter. All you got to do is check/uncheck to filter tweets from verified tweeple only! Works in: - home feed - search results - tweet replies ... and anywhere else tweets show up! The code is open source ( https://github.com/RajatVaghani/verified-tweets-only ) and extremely light weight and easy to use - and most importantly, it gets the job done!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Επίσημο URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Περιγραφή | Simple extension to only show verified tweets on Twitter |
Μέγεθος Αρχείου | 90.9 KB |
Αριθμός Εγκαταστάσεων | 40 |
Τρέχουσα Έκδοση | 0.0.1 |
Τελευταία Ενημέρωση | 2021-06-24 |
Ημερομηνία Δημοσίευσης | 2021-06-24 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://verifiedtweetsonly.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://verifiedtweetsonly.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://verifiedtweetsonly.com |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Verified Tweets Only", "version": "0.0.1", "manifest_version": 2, "description": "Simple extension to only show verified tweets on Twitter", "icons": { "16": "icons\/icon_on.png", "48": "icons\/icon_on.png", "128": "icons\/icon_on.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "storage.js", "contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "page_action": { "default_icon": { "19": "icons\/icon_on.png", "38": "icons\/icon_on.png" }, "default_popup": "popup.html", "default_title": "Verified Tweets Only" } } |