YT End Cards Hider

YT End Cards Hider

YT End Cards Hiderคืออะไร?

YT End Cards Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ayudh Kumar Gupta และคุณลักษณะหลักของมันคือ "YT End Cards Hider"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YT End Cards Hider

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

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

                        Hide annoying End Cards from YouTube videos. Remove suggested videos that show up as thumbnails at the end of a YouTube video with this simple extension.                    

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

ชื่อ YT End Cards Hider YT End Cards Hider
ID jokabnhdpdjkpncammcloeagdnnooima
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yt-end-cards-hider/jokabnhdpdjkpncammcloeagdnnooima
คำอธิบาย YT End Cards Hider
ขนาดไฟล์ 12.68 KB
จำนวนการติดตั้ง 1,100
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-05-07
วันที่เผยแพร่ 2020-05-07
คะแนน 4.73/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา Ayudh Kumar Gupta
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YT End Cards Hider",
    "version": "1.0",
    "description": "YT End Cards Hider",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}