YouTube Studio Favicon

Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.

Was ist YouTube Studio Favicon?

YouTube Studio Favicon ist eine Chrome-Erweiterung, die von https://damiendavisneff.com entwickelt wurde, und ihr Hauptmerkmal ist "Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.".

Erweiterungsscreenshots

screenshot

YouTube Studio Favicon-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Studio Favicon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Gives YouTube Studio a separate favicon, which is the Studio's Mobile App icon, to differentiate it from the main YouTube site.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Studio Favicon YouTube Studio Favicon
ID mkafoonfjjnhnglfeiladhgnekbkggll
Offizielle URL https://chromewebstore.google.com/detail/youtube-studio-favicon/mkafoonfjjnhnglfeiladhgnekbkggll
Beschreibung Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.
Dateigröße 25.87 KB
Installationsanzahl 1,135
Aktuelle Version 0.0.1.0
Letztes Update 2023-10-10
Veröffentlichungsdatum 2022-12-20
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler https://damiendavisneff.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DamienDavisNeff/YouTubeStudioFavicon/blob/main/README.md
Hilfeseite URL https://www.damiendavisneff.com/support
URL der Datenschutzrichtlinien-Seite https://github.com/DamienDavisNeff/PrivacyPolicies
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Studio Favicon",
    "version": "0.0.1.0",
    "description": "Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.",
    "icons": {
        "128": "images\/icon.png",
        "48": "images\/icon_small.png"
    },
    "content_scripts": [
        {
            "js": [
                "global.js",
                "siteChanges.js"
            ],
            "matches": [
                "https:\/\/studio.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/studio\/favicon.png"
            ],
            "matches": [
                "https:\/\/studio.youtube.com\/*"
            ]
        }
    ]
}