Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Was ist Verified Tweets Only?
Verified Tweets Only ist eine Chrome-Erweiterung, die von https://verifiedtweetsonly.com entwickelt wurde, und ihr Hauptmerkmal ist "Simple extension to only show verified tweets on Twitter".
Erweiterungsscreenshots
Verified Tweets Only-Erweiterungs-CRX-Datei herunterladen
Laden Sie Verified Tweets Only-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Offizielle URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Beschreibung | Simple extension to only show verified tweets on Twitter |
Dateigröße | 90.9 KB |
Installationsanzahl | 40 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2021-06-24 |
Veröffentlichungsdatum | 2021-06-24 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://verifiedtweetsonly.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://verifiedtweetsonly.com |
Hilfeseite URL | https://verifiedtweetsonly.com |
Unterstützte Sprachen | 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" } } |