Twitter Bird
Extension which returns the Twitter bird icon back
Co je Twitter Bird?
Twitter Bird je rozšíření Chrome vyvinuté https://cking.software, a jeho hlavní funkcí je „Extension which returns the Twitter bird icon back“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter Bird
Stáhněte si soubory rozšíření Twitter Bird ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.
Základní Informace o Rozšíření
Název | Twitter Bird |
ID | ihahjhhimifemcpmbghgjmniofjchmlh |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
Popis | Extension which returns the Twitter bird icon back |
Velikost souboru | 553 KB |
Počet instalací | 196 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2023-08-29 |
Datum Vydání | 2023-07-26 |
Hodnocení | 4.00/5 Celkem 3 Hodnocení |
Vývojář | https://cking.software |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/Semper-Viventem/twitter-bird |
URL Stránky Nápovědy | https://github.com/Semper-Viventem/twitter-bird/issues |
Podporované Jazyky | 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" } } |