NoX
Return to old logo of Twitter
What is NoX?
NoX is a Chrome extension developed by Orion, and its main feature is "Return to old logo of Twitter".
Extension Screenshots
Download NoX Extension CRX File
Download NoX extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | NoX |
ID | medmbbhpclijphfaakgkfjphihdjdmnm |
Official URL | https://chromewebstore.google.com/detail/nox/medmbbhpclijphfaakgkfjphihdjdmnm |
Description | Return to old logo of Twitter |
File Size | 11.81 KB |
Installation Count | 47 |
Current Version | 2.0 |
Last Updated | 2023-07-28 |
Publish Date | 2023-07-25 |
Developer | Orion |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |