NoX
Return to old logo of Twitter
什麼是NoX?
NoX是由Orion開發的Chrome擴展程式,該擴展的主要功能是“Return to old logo of Twitter”。
擴展截圖
下載NoX擴展crx文件
下載NoX擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension lets you revert to the old Twitter logo, before it becomes X. It modifies the site's HTML page to change the logo.
In collaboration with Yuuto
Github: https://github.com/oriionn/nox 擴展基本資訊
| 名稱 | |
| ID | medmbbhpclijphfaakgkfjphihdjdmnm |
| 官方網址 | https://chromewebstore.google.com/detail/nox/medmbbhpclijphfaakgkfjphihdjdmnm |
| 簡介 | Return to old logo of Twitter |
| 檔案大小 | 11.81 KB |
| 安裝次數 | 47 |
| 目前版本 | 2.0 |
| 更新時間 | 2023-07-28 |
| 上架時間 | 2023-07-25 |
| 開發者 | Orion |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NoX",
"version": "2.0",
"description": "Return to old logo of Twitter",
"icons": {
"16": "icons\/nox16.png",
"32": "icons\/nox32.png",
"48": "icons\/nox48.png",
"128": "icons\/nox128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*",
"*:\/\/*.x.com\/*"
],
"js": [
"app.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/twitter.ico"
],
"matches": [
"*:\/\/*.twitter.com\/*",
"*:\/\/*.x.com\/*"
]
}
]
} | |