Twitter Bird
Extension which returns the Twitter bird icon back
Hvad er Twitter Bird?
Twitter Bird er en Chrome-udvidelse udviklet af https://cking.software, og dens hovedfunktion er "Extension which returns the Twitter bird icon back".
Udvidelsesskærmbilleder
Download Twitter Bird-udvidelses-CRX-fil
Download Twitter Bird-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.
Grundlæggende oplysninger om udvidelsen
Navn | Twitter Bird |
ID | ihahjhhimifemcpmbghgjmniofjchmlh |
Officiel URL | https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh |
Beskrivelse | Extension which returns the Twitter bird icon back |
Filstørrelse | 553 KB |
Antal Installationer | 196 |
Nuværende Version | 1.1 |
Senest Opdateret | 2023-08-29 |
Udgivelsesdato | 2023-07-26 |
Bedømmelse | 4.00/5 Samlet 3 Bedømmelser |
Udvikler | https://cking.software |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Semper-Viventem/twitter-bird |
Hjælpeside-URL | https://github.com/Semper-Viventem/twitter-bird/issues |
Understøttede Sprog | 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" } } |