YouTube Card Blocker

Blocks cards from showing in YouTube videos.

YouTube Card Blockerคืออะไร?

YouTube Card Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Blocks cards from showing in YouTube videos."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Card Blocker

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Card Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever been watching a YouTube video and the last part of the video is covered by the end screen cards? This extension blocks those end screen cards from appearing, allowing you to watch the whole video without missing any content!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Card Blocker YouTube Card Blocker
ID faabmlkblchainmfmilhjigidncpdpkb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-card-blocker/faabmlkblchainmfmilhjigidncpdpkb
คำอธิบาย Blocks cards from showing in YouTube videos.
ขนาดไฟล์ 25.77 KB
จำนวนการติดตั้ง 134
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-04-05
วันที่เผยแพร่ 2020-04-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Card Blocker",
    "description": "Blocks cards from showing in YouTube videos.",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": {
            "256": "youtube-card-blocker-256.png",
            "128": "youtube-card-blocker-128.png",
            "64": "youtube-card-blocker-64.png",
            "32": "youtube-card-blocker-32.png",
            "16": "youtube-card-blocker-16.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "youtubeCardBlocker.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "youtubeCardBlocker.css"
    ]
}