Verified Tweets Only
Simple extension to only show verified tweets on Twitter
What is Verified Tweets Only?
Verified Tweets Only is a Chrome extension developed by https://verifiedtweetsonly.com, and its main feature is "Simple extension to only show verified tweets on Twitter".
Extension Screenshots
Download Verified Tweets Only Extension CRX File
Download Verified Tweets Only extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Official URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Description | Simple extension to only show verified tweets on Twitter |
File Size | 90.9 KB |
Installation Count | 40 |
Current Version | 0.0.1 |
Last Updated | 2021-06-24 |
Publish Date | 2021-06-24 |
Rating | 3.00/5 Total 2 Ratings |
Developer | https://verifiedtweetsonly.com |
[email protected] | |
Payment Type | free |
Extension Website | https://verifiedtweetsonly.com |
Help Page URL | https://verifiedtweetsonly.com |
Supported Languages | 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" } } |