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 |
| 官方網址 | 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"
]
}
]
} | |