Twitter TW Blocker
Blur the tweets containing a trigger warning
什麼是Twitter TW Blocker?
Twitter TW Blocker是由tymmesyde開發的Chrome擴展程式,該擴展的主要功能是“Blur the tweets containing a trigger warning”。
擴展截圖
下載Twitter TW Blocker擴展crx文件
下載Twitter TW Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use Twitter TW Blocker if you want to hide the tweets that have a trigger warning pattern (e.g. TW // content).
Just click on the tweet if you want to remove the warning. 擴展基本資訊
| 名稱 | |
| ID | cmgnaiadimhcfkmfehdbindohbenemnk |
| 官方網址 | https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk |
| 簡介 | Blur the tweets containing a trigger warning |
| 檔案大小 | 15 KB |
| 安裝次數 | 19 |
| 目前版本 | 1.0 |
| 更新時間 | 2020-08-09 |
| 上架時間 | 2020-08-09 |
| 開發者 | tymmesyde |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitter TW Blocker",
"description": "Blur the tweets containing a trigger warning",
"version": "1.0",
"icons": {
"16": "src\/images\/icon_16.png",
"32": "src\/images\/icon_32.png",
"48": "src\/images\/icon_48.png",
"128": "src\/images\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"css": [
"src\/styles\/content.css"
],
"js": [
"src\/scripts\/content.js"
]
}
],
"web_accessible_resources": [
"src\/styles\/content.css"
],
"browser_action": {
"default_popup": "src\/popup.html",
"default_icon": {
"16": "src\/images\/icon_16.png",
"32": "src\/images\/icon_32.png",
"48": "src\/images\/icon_48.png",
"128": "src\/images\/icon_128.png"
}
}
} | |