Verified Tweets Only
Simple extension to only show verified tweets on Twitter
什么是Verified Tweets Only?
Verified Tweets Only是由https://verifiedtweetsonly.com开发的Chrome扩展程序,该扩展的主要功能是“Simple extension to only show verified tweets on Twitter”。
扩展截图
下载Verified Tweets Only扩展crx文件
下载Verified Tweets Only扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| ID | ecgogipmgmochbfeecomhobmbjfpikdo |
| 官方URL | https://chromewebstore.google.com/detail/verified-tweets-only/ecgogipmgmochbfeecomhobmbjfpikdo |
| 简介 | Simple extension to only show verified tweets on Twitter |
| 文件大小 | 90.9 KB |
| 安装次数 | 40 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2021-06-24 |
| 上架时间 | 2021-06-24 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | https://verifiedtweetsonly.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://verifiedtweetsonly.com |
| 帮助页面URL | https://verifiedtweetsonly.com |
| 支持的语言 | 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"
}
} | |