Is YouTube Channel Monetized?

Display information about YouTube channel monetization status

Is YouTube Channel Monetized?คืออะไร?

Is YouTube Channel Monetized? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikita Suyazov และคุณลักษณะหลักของมันคือ "Display information about YouTube channel monetization status"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Is YouTube Channel Monetized?

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}