Unwanted Opinions
Lets you block tweets using various options.
什么是Unwanted Opinions?
Unwanted Opinions是由Xinto开发的Chrome扩展程序,该扩展的主要功能是“Lets you block tweets using various options.”。
扩展截图
下载Unwanted Opinions扩展crx文件
下载Unwanted Opinions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Unwanted Opinion saves your eyes by blocking tweets using filters you specify. Still want to see the tweet? Press the Show button! 扩展基本信息
| 名称 | |
| ID | ejobchilnlocfaljfaakomkhaajkojin |
| 官方URL | https://chromewebstore.google.com/detail/unwanted-opinions/ejobchilnlocfaljfaakomkhaajkojin |
| 简介 | Lets you block tweets using various options. |
| 文件大小 | 22.77 KB |
| 安装次数 | 27 |
| 当前版本 | 0.2.1 |
| 更新时间 | 2022-11-24 |
| 上架时间 | 2022-11-21 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Xinto |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://vencord.dev/cloud/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Unwanted Opinions",
"version": "0.2.1",
"description": "Lets you block tweets using various options.",
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"action": {
"default_title": "Unwanted Opinion",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/twitter.com\/*",
"https:\/\/mobile.twitter.com\/*"
],
"resources": [
"opinionator.js"
]
}
]
} | |