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 |
| 官方URL | 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\/*"
]
}
]
} | |