YouTube Studio Favicon

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

What is YouTube Studio Favicon?

YouTube Studio Favicon is a Chrome extension developed by https://damiendavisneff.com, and its main feature is "Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.".

Extension Screenshots

screenshot

Download YouTube Studio Favicon Extension CRX File

Download YouTube Studio Favicon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name YouTube Studio Favicon YouTube Studio Favicon
ID mkafoonfjjnhnglfeiladhgnekbkggll
Official URL https://chromewebstore.google.com/detail/youtube-studio-favicon/mkafoonfjjnhnglfeiladhgnekbkggll
Description Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.
File Size 25.87 KB
Installation Count 1,135
Current Version 0.0.1.0
Last Updated 2023-10-10
Publish Date 2022-12-20
Rating 3.00/5 Total 4 Ratings
Developer https://damiendavisneff.com
Email [email protected]
Payment Type free
Extension Website https://github.com/DamienDavisNeff/YouTubeStudioFavicon/blob/main/README.md
Help Page URL https://www.damiendavisneff.com/support
Privacy Policy Page URL https://github.com/DamienDavisNeff/PrivacyPolicies
Supported Languages 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\/*"
            ]
        }
    ]
}