Remove Twitter Views
Remove Views button from Twitter
什么是Remove Twitter Views?
Remove Twitter Views是由igorhaagrod开发的Chrome扩展程序,该扩展的主要功能是“Remove Views button from Twitter”。
扩展截图
下载Remove Twitter Views扩展crx文件
下载Remove Twitter Views扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
After Elon Musk completely destroyed Twitter, extensions like this are needed. The focus of this one is, for now, removing the "views" button from the web app. 扩展基本信息
| 名称 | |
| ID | nebfimpiljmmgfgaiaponfmcopndjkpg |
| 官方URL | https://chromewebstore.google.com/detail/remove-twitter-views/nebfimpiljmmgfgaiaponfmcopndjkpg |
| 简介 | Remove Views button from Twitter |
| 文件大小 | 7.8 KB |
| 安装次数 | 171 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-12-25 |
| 上架时间 | 2022-12-25 |
| 评分 | 4.73/5 共11次评分 |
| 开发者 | igorhaagrod |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Remove Twitter Views",
"description": "Remove Views button from Twitter",
"version": "1.0",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_popup": "remove-views.html",
"default_icon": "icon32.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*"
],
"js": [
"content-script.js"
]
}
]
} | |