Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Youtube Skip Videosคืออะไร?

Youtube Skip Videos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Megroplan และคุณลักษณะหลักของมันคือ "This extension gives you the possibility to skip Youtube autoplay videos"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Skip Videos

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

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

                        Just add a song to the blacklist and it will disappear forever the Youtube auto-play song lists.
Any suggestion is appreciated.                    

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

ชื่อ Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
คำอธิบาย This extension gives you the possibility to skip Youtube autoplay videos
ขนาดไฟล์ 171 KB
จำนวนการติดตั้ง 26
เวอร์ชันปัจจุบัน 1.1.3
อัปเดตครั้งล่าสุด 2019-06-27
วันที่เผยแพร่ 2019-06-27
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Megroplan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Skip Videos",
    "description": "This extension gives you the possibility to skip Youtube autoplay videos",
    "version": "1.1.3",
    "browser_action": {
        "default_icon": "img\/youtube.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "contextMenus",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-3.1.1.min.js",
                "contentYoutube.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}