YouTube Studio Favicon

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

什么是YouTube Studio Favicon?

YouTube Studio Favicon是由https://damiendavisneff.com开发的Chrome扩展程序,该扩展的主要功能是“Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.”。

扩展截图

screenshot

下载YouTube Studio Favicon扩展crx文件

下载YouTube Studio Favicon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 YouTube Studio Favicon YouTube Studio Favicon
ID mkafoonfjjnhnglfeiladhgnekbkggll
官方URL https://chromewebstore.google.com/detail/youtube-studio-favicon/mkafoonfjjnhnglfeiladhgnekbkggll
简介 Gives YouTube Studio's favicon the Studio Mobile App's icon, different from the main YouTube site.
文件大小 25.87 KB
安装次数 1,135
当前版本 0.0.1.0
更新时间 2023-10-10
上架时间 2022-12-20
评分 3.00/5 共4次评分
开发者 https://damiendavisneff.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/DamienDavisNeff/YouTubeStudioFavicon/blob/main/README.md
帮助页面URL https://www.damiendavisneff.com/support
隐私政策页面URL https://github.com/DamienDavisNeff/PrivacyPolicies
支持的语言 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\/*"
            ]
        }
    ]
}