Is YouTube Channel Monetized?

Display information about YouTube channel monetization status

什么是Is YouTube Channel Monetized??

Is YouTube Channel Monetized?是由Nikita Suyazov开发的Chrome扩展程序,该扩展的主要功能是“Display information about YouTube channel monetization status”。

扩展截图

screenshot
screenshot

下载Is YouTube Channel Monetized?扩展crx文件

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

扩展使用说明

                        👨🏻‍💻 Source Code
https://github.com/NikitaSuyazov/is-youtube-channel-monetized-chrome-extension

🪲 Report Issue
https://github.com/NikitaSuyazov/is-youtube-channel-monetized-chrome-extension/issues                    

扩展基本信息

名称 Is YouTube Channel Monetized? Is YouTube Channel Monetized?
ID fimmmbaooeckajklhkfnfcoahlncoikn
官方URL https://chromewebstore.google.com/detail/is-youtube-channel-moneti/fimmmbaooeckajklhkfnfcoahlncoikn
简介 Display information about YouTube channel monetization status
文件大小 17.83 KB
安装次数 2,311
当前版本 1.3
更新时间 2023-04-09
上架时间 2022-11-16
评分 1.40/5 共15次评分
开发者 Nikita Suyazov
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/NikitaSuyazov/is-youtube-channel-monetized-chrome-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Is YouTube Channel Monetized?",
    "description": "Display information about YouTube channel monetization status",
    "version": "1.3",
    "manifest_version": 3,
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ]
}