Sponsor Skipper

Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

Sponsor Skipperคืออะไร?

Sponsor Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zackbanack.com และคุณลักษณะหลักของมันคือ "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sponsor Skipper

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

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

                        Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

*Notes:*
- This extension requires use of YouTube closed captions to work
- Tab must be in focus

How it works:
- Ever x seconds, the extension will read the video captions
- If a trigger word is found in close proximity to a form of the word "sponsor", then we enter into a sponsored segment
- While in a sponsored segment, if the trigger word is re-encountered or we encounter a word from the in-ad list, keep skimming through the video

GitHub: https://github.com/zbanack/youtube-sponsor-skipper/                    

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

ชื่อ Sponsor Skipper Sponsor Skipper
ID jfdipdnjgckbpkomodlcfhmkencihepc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc
คำอธิบาย Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
ขนาดไฟล์ 20.04 KB
จำนวนการติดตั้ง 232
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-11-26
วันที่เผยแพร่ 2019-11-25
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://zackbanack.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.zackbanack.com
URL หน้าช่วยเหลือ https://www.paypal.me/zackbanack
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sponsor Skipper",
    "short_name": "Skipper",
    "description": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "32": "\/images\/icons-32.png",
        "192": "\/images\/icons-192.png",
        "512": "\/images\/icons-512.png"
    },
    "browser_action": {
        "default_title": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
        "default_icon": "\/images\/icons-32.png",
        "default_popup": "index.html"
    },
    "manifest_version": 2
}