Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Hvad er Verified Tweets Only?
Verified Tweets Only er en Chrome-udvidelse udviklet af https://verifiedtweetsonly.com, og dens hovedfunktion er "Simple extension to only show verified tweets on Twitter".
Udvidelsesskærmbilleder
Download Verified Tweets Only-udvidelses-CRX-fil
Download Verified Tweets Only-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Officiel URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Beskrivelse | Simple extension to only show verified tweets on Twitter |
Filstørrelse | 90.9 KB |
Antal Installationer | 40 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2021-06-24 |
Udgivelsesdato | 2021-06-24 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | https://verifiedtweetsonly.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://verifiedtweetsonly.com |
Hjælpeside-URL | https://verifiedtweetsonly.com |
Understøttede Sprog | 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" } } |