Twitter Bird
Extension which returns the Twitter bird icon back
Cos'è Twitter Bird?
Twitter Bird è un'estensione di Chrome sviluppata da https://cking.software, e la sua funzione principale è "Extension which returns the Twitter bird icon back".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Bird
Scarica i file di estensione Twitter Bird in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.
Informazioni di Base sull'Estensione
Nome | Twitter Bird |
ID | ihahjhhimifemcpmbghgjmniofjchmlh |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
Descrizione | Extension which returns the Twitter bird icon back |
Dimensione del File | 553 KB |
Conteggio Installazioni | 196 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-08-29 |
Data di Pubblicazione | 2023-07-26 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | https://cking.software |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Semper-Viventem/twitter-bird |
URL della Pagina di Aiuto | https://github.com/Semper-Viventem/twitter-bird/issues |
Lingue Supportate | 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" } } |