Remove Twitter Views
Remove Views button from Twitter
什麼是Remove Twitter Views?
Remove Twitter Views是由igorhaagrod開發的Chrome擴展程式,該擴展的主要功能是“Remove Views button from Twitter”。
擴展截圖
下載Remove Twitter Views擴展crx文件
下載Remove Twitter Views擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
After Elon Musk completely destroyed Twitter, extensions like this are needed. The focus of this one is, for now, removing the "views" button from the web app. 擴展基本資訊
| 名稱 | |
| ID | nebfimpiljmmgfgaiaponfmcopndjkpg |
| 官方網址 | https://chromewebstore.google.com/detail/remove-twitter-views/nebfimpiljmmgfgaiaponfmcopndjkpg |
| 簡介 | Remove Views button from Twitter |
| 檔案大小 | 7.8 KB |
| 安裝次數 | 171 |
| 目前版本 | 1.0 |
| 更新時間 | 2022-12-25 |
| 上架時間 | 2022-12-25 |
| 評分 | 4.73/5 共 11 次評分 |
| 開發者 | igorhaagrod |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Remove Twitter Views",
"description": "Remove Views button from Twitter",
"version": "1.0",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_popup": "remove-views.html",
"default_icon": "icon32.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*"
],
"js": [
"content-script.js"
]
}
]
} | |