Twitter Customizer

Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.

Cos'è Twitter Customizer?

Twitter Customizer è un'estensione di Chrome sviluppata da Alex, e la sua funzione principale è "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Customizer

Scarica i file di estensione Twitter Customizer 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitter Customizer Twitter Customizer
ID gldkmephdjlaondcbjadadgmhcnjlnfj
URL Ufficiale https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj
Descrizione Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
Dimensione del File 43 KB
Conteggio Installazioni 410
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-12-09
Data di Pubblicazione 2023-04-12
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore Alex
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}