Twitter Bird
Extension which returns the Twitter bird icon back
What is Twitter Bird?
Twitter Bird is a Chrome extension developed by https://cking.software, and its main feature is "Extension which returns the Twitter bird icon back".
Extension Screenshots
Download Twitter Bird Extension CRX File
Download Twitter Bird 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
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.
Extension Basic Information
Name | Twitter Bird |
ID | ihahjhhimifemcpmbghgjmniofjchmlh |
Official URL | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
Description | Extension which returns the Twitter bird icon back |
File Size | 553 KB |
Installation Count | 196 |
Current Version | 1.1 |
Last Updated | 2023-08-29 |
Publish Date | 2023-07-26 |
Rating | 4.00/5 Total 3 Ratings |
Developer | https://cking.software |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Semper-Viventem/twitter-bird |
Help Page URL | https://github.com/Semper-Viventem/twitter-bird/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Bird", "description": "Extension which returns the Twitter bird icon back", "version": "1.1", "action": { "default_icon": "images\/icon_512.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "css": [ "content.css" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png", "512": "images\/icon_128.png" } } |