Verified Tweets Only
Simple extension to only show verified tweets on Twitter
Wat is Verified Tweets Only?
Verified Tweets Only is een Chrome-extensie ontwikkeld door https://verifiedtweetsonly.com, en de belangrijkste functie is "Simple extension to only show verified tweets on Twitter".
Extensie Screenshots
Download het CRX-bestand van de extensie Verified Tweets Only
Download Verified Tweets Only-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Verified Tweets Only |
ID | ecgogipmgmochbfeecomhobmbjfpikdo |
Officiële URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
Beschrijving | Simple extension to only show verified tweets on Twitter |
Bestandsgrootte | 90.9 KB |
Aantal Installaties | 40 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2021-06-24 |
Publicatiedatum | 2021-06-24 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://verifiedtweetsonly.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://verifiedtweetsonly.com |
Help Pagina-URL | https://verifiedtweetsonly.com |
Ondersteunde Talen | 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" } } |