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
官方網址 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\/*"
    ]
}