Removing X from Twitter
Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…
什麼是Removing X from Twitter?
Removing X from Twitter是由daraemgvd開發的Chrome擴展程式,該擴展的主要功能是“Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones…”。
擴展截圖
下載Removing X from Twitter擴展crx文件
下載Removing X from Twitter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Brings back classic Twitter. Also removes verification buttons.
Devuelve Twitter a su estado clásico, también elimina los botones de verificación. 擴展基本資訊
| 名稱 | |
| ID | njckbclijhhggdkjegpeapgdgbabeoab |
| 官方網址 | https://chromewebstore.google.com/detail/removing-x-from-twitter/njckbclijhhggdkjegpeapgdgbabeoab |
| 簡介 | Brings back classic Twitter. Also removes verification buttons. Devuelve Twitter a su estado clásico, también elimina los botones… |
| 檔案大小 | 23.7 KB |
| 安裝次數 | 88 |
| 目前版本 | 2.4 |
| 更新時間 | 2023-12-09 |
| 上架時間 | 2023-08-17 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | daraemgvd |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Removing X from Twitter",
"version": "2.4",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/www.twitter.com\/*",
"https:\/\/twitter.com\/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"matches": [
"http:\/\/www.twitter.com\/*",
"https:\/\/twitter.com\/*"
],
"resources": [
"logo.svg",
"logoBlanco.png"
]
}
]
} | |