Blue Check Hider
Identify and hide Twitter Blue users
什么是Blue Check Hider?
Blue Check Hider是由https://gsajith.com开发的Chrome扩展程序,该扩展的主要功能是“Identify and hide Twitter Blue users”。
扩展截图
下载Blue Check Hider扩展crx文件
下载Blue Check Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.
You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8. 扩展基本信息
| 名称 | |
| ID | jhkoihkndkemdikaiafkiolgidghjfkl |
| 官方URL | https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl |
| 简介 | Identify and hide Twitter Blue users |
| 文件大小 | 497 KB |
| 安装次数 | 611 |
| 当前版本 | 1.3 |
| 更新时间 | 2023-05-05 |
| 上架时间 | 2023-04-21 |
| 评分 | 4.25/5 共8次评分 |
| 开发者 | https://gsajith.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/gsajith/blue-check-hider |
| 帮助页面URL | https://github.com/gsajith/blue-check-hider |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Blue Check Hider",
"version": "1.3",
"description": "Identify and hide Twitter Blue users",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
".\/static\/js\/content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/*.twitter.com\/*",
"http:\/\/*.twitter.com\/*",
"https:\/\/twitter.com\/*",
"http:\/\/twitter.com\/*"
]
}
],
"background": {
"service_worker": ".\/static\/js\/background.js",
"type": "module"
},
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_title": "Blue Check Hider"
}
} | |