Hide Twitter Elements
Choose to make your Twitter timeline less crowded by disabling features you do not need.
什么是Hide Twitter Elements?
Hide Twitter Elements是由https://shodipoayomide.com开发的Chrome扩展程序,该扩展的主要功能是“Choose to make your Twitter timeline less crowded by disabling features you do not need.”。
扩展截图
下载Hide Twitter Elements扩展crx文件
下载Hide Twitter Elements扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension gives you the option to disable interactive elements like "views, comments, retweet & likes" selectively, to make your Twitter timeline less congested. 扩展基本信息
| 名称 | |
| ID | fbffhgacjoeloopjakfbdgcdfaklionn |
| 官方URL | https://chromewebstore.google.com/detail/hide-twitter-elements/fbffhgacjoeloopjakfbdgcdfaklionn |
| 简介 | Choose to make your Twitter timeline less crowded by disabling features you do not need. |
| 文件大小 | 2.06 MB |
| 安装次数 | 38 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2022-12-27 |
| 上架时间 | 2022-12-27 |
| 开发者 | https://shodipoayomide.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Developerayo/Hide-Twitter-Elements |
| 帮助页面URL | https://twitter.com/developerayo |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Hide Twitter Elements",
"description": "Choose to make your Twitter timeline less crowded by disabling features you do not need.",
"version": "1.0.2",
"icons": {
"16": "assets\/images\/logo1.png",
"18": "assets\/images\/logo1.png",
"128": "assets\/images\/logo1.png"
},
"action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"assets\/lib\/jquery.min.js",
"content_script.js"
]
}
]
} | |