Better Twitter
Make Twitter great again by removing unwanted contents from your timeline.
什么是Better Twitter?
Better Twitter是由:Dream开发的Chrome扩展程序,该扩展的主要功能是“Make Twitter great again by removing unwanted contents from your timeline.”。
扩展截图
下载Better Twitter扩展crx文件
下载Better Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The current settings allow you to hide the following elements:
- view counts
- tweet analytics
- share buttons
- ads & promoted tweets
- promoted account (who to follow section only)
- 'You might like' tweets
Please note that in case of any new UI changes on Twitter, it may take 1-3 days for our extension to update.
Feels free to leave feedback and suggestions, as I will be continue improving the extension and add more features later on.
Changelog:
v.10.3 (18/01/2023)
- Added new option to hide 'You might like' tweets
v1.0.2 (15/01/2023)
- Updated to correspond to new UI changes
- Added a new option to hide tweet analytics 扩展基本信息
| 名称 | |
| ID | pdpffnhppidmpbfpflnclfkfgcgimblo |
| 官方URL | https://chromewebstore.google.com/detail/better-twitter/pdpffnhppidmpbfpflnclfkfgcgimblo |
| 简介 | Make Twitter great again by removing unwanted contents from your timeline. |
| 文件大小 | 30.66 KB |
| 安装次数 | 41 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2023-01-19 |
| 上架时间 | 2022-12-26 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | :Dream |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Better Twitter",
"version": "1.0.3",
"description": "Make Twitter great again by removing unwanted contents from your timeline.",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"action": {
"default_title": "Better Twitter",
"default_popup": "popup.html"
},
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
}
} | |