Twitter Customizer
Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
Wat is Twitter Customizer?
Twitter Customizer is een Chrome-extensie ontwikkeld door Alex, en de belangrijkste functie is "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitter Customizer
Download Twitter Customizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Twitter Customizer |
ID | gldkmephdjlaondcbjadadgmhcnjlnfj |
Officiële URL | https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj |
Beschrijving | Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon. |
Bestandsgrootte | 43 KB |
Aantal Installaties | 410 |
Huidige Versie | 1.2.0 |
Laatst Bijgewerkt | 2023-12-09 |
Publicatiedatum | 2023-04-12 |
Beoordeling | 4.43/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Alex |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |