Twitter Customizer

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

Qu'est-ce que Twitter Customizer ?

Twitter Customizer est une extension Chrome développée par Alex, et sa fonction principale est "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitter Customizer

Téléchargez les fichiers d'extension Twitter Customizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitter Customizer Twitter Customizer
ID gldkmephdjlaondcbjadadgmhcnjlnfj
URL Officiel https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj
Description Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
Taille du Fichier 43 KB
Nombre d'Installations 410
Version Actuelle 1.2.0
Dernière Mise à Jour 2023-12-09
Date de Publication 2023-04-12
Évaluation 4.43/5 Total 7 Évaluations
Développeur Alex
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}