Twitter Customizer
Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
Co to jest Twitter Customizer?
Twitter Customizer to rozszerzenie Chrome opracowane przez Alex, a jego główną funkcją jest „Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Customizer
Pobierz pliki rozszerzeń Twitter Customizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Twitter Customizer |
ID | gldkmephdjlaondcbjadadgmhcnjlnfj |
Oficjalny URL | https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj |
Opis | Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon. |
Rozmiar pliku | 43 KB |
Liczba instalacji | 410 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2023-12-09 |
Data Publikacji | 2023-04-12 |
Ocena | 4.43/5 Łącznie 7 Oceny |
Deweloper | Alex |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |