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
Eメール [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\/*"
    ]
}