YouTube Studio Favicon

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

Co je YouTube Studio Favicon?

YouTube Studio Favicon je rozšíření Chrome vyvinuté https://damiendavisneff.com, a jeho hlavní funkcí je „Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Studio Favicon

Stáhněte si soubory rozšíření YouTube Studio Favicon ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název YouTube Studio Favicon YouTube Studio Favicon
ID mkafoonfjjnhnglfeiladhgnekbkggll
Oficiální URL https://chromewebstore.google.com/detail/youtube-studio-favicon/mkafoonfjjnhnglfeiladhgnekbkggll
Popis Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.
Velikost souboru 25.87 KB
Počet instalací 1,135
Aktuální Verze 0.0.1.0
Poslední Aktualizace 2023-10-10
Datum Vydání 2022-12-20
Hodnocení 3.00/5 Celkem 4 Hodnocení
Vývojář https://damiendavisneff.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/DamienDavisNeff/YouTubeStudioFavicon/blob/main/README.md
URL Stránky Nápovědy https://www.damiendavisneff.com/support
URL Stránky Zásad Ochrany Soukromí https://github.com/DamienDavisNeff/PrivacyPolicies
Podporované Jazyky 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\/*"
            ]
        }
    ]
}