Twitter Bot Hider
Hides twitter bots from your timeline.
什么是Twitter Bot Hider?
Twitter Bot Hider是由Ebu开发的Chrome扩展程序,该扩展的主要功能是“Hides twitter bots from your timeline.”。
扩展截图
下载Twitter Bot Hider扩展crx文件
下载Twitter Bot Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.
The source code can be found here: https://github.com/EbuOgden/TwitterBotHider 扩展基本信息
| 名称 | |
| ID | efpmoenhggjbiaeomapapohigijbobgb |
| 官方URL | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb |
| 简介 | Hides twitter bots from your timeline. |
| 文件大小 | 40.87 KB |
| 安装次数 | 33 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2022-10-31 |
| 上架时间 | 2022-10-31 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Ebu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter Bot Hider",
"version": "0.1.1",
"description": "Hides twitter bots from your timeline.",
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"https:\/\/*.githubusercontent.com\/*"
],
"matches": [
"https:\/\/*.twitter.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "assets\/ext-icon.png",
"24": "assets\/ext-icon.png",
"32": "assets\/ext-icon.png"
},
"default_title": "Twitter Bot Hider",
"default_popup": "popup.html"
},
"manifest_version": 3
} | |