Twitter Customizer
Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
What is Twitter Customizer?
Twitter Customizer is a Chrome extension developed by Alex, and its main feature is "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".
Extension Screenshots
Download Twitter Customizer Extension CRX File
Download Twitter Customizer 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
A simple chrome extension which allows you to personalize your experience by uploading your own image to replace the standard X logo and favicon on the client. You can easily add a touch of personality to your browser. Simply upload your favorite asset and it will be displayed in place.
Extension Basic Information
Name | Twitter Customizer |
ID | gldkmephdjlaondcbjadadgmhcnjlnfj |
Official URL | https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj |
Description | Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon. |
File Size | 43 KB |
Installation Count | 410 |
Current Version | 1.2.0 |
Last Updated | 2023-12-09 |
Publish Date | 2023-04-12 |
Rating | 4.43/5 Total 7 Ratings |
Developer | Alex |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Customizer", "version": "1.2.0", "short_name": "TC", "description": "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.", "manifest_version": 3, "permissions": [ "declarativeContent", "storage" ], "icons": { "16": "assets\/images\/no_more_doge_16.png", "32": "assets\/images\/no_more_doge_32.png", "48": "assets\/images\/no_more_doge_48.png", "128": "assets\/images\/no_more_doge_128.png" }, "background": { "service_worker": "assets\/scripts\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*" ], "js": [ "assets\/scripts\/contentScript.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html" } } |