Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Vad är Verified Tweets Only?
Verified Tweets Only är en Chrome-tillägg utvecklad av https://verifiedtweetsonly.com, och dess huvudfunktion är "Simple extension to only show verified tweets on Twitter".
Tilläggsskärmbilder
Ladda ner Verified Tweets Only-förlängningens CRX-fil
Ladda ner Verified Tweets Only-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Officiell webbadress | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Beskrivning | Simple extension to only show verified tweets on Twitter |
Filstorlek | 90.9 KB |
Antal Installationer | 40 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2021-06-24 |
Publiceringsdatum | 2021-06-24 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | https://verifiedtweetsonly.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://verifiedtweetsonly.com |
Hjälpsida URL | https://verifiedtweetsonly.com |
Stödda Språk | 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" } } |