Sponsor Skipper

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

Sponsor Skipper là gì?

Sponsor Skipper là một tiện ích mở rộng Chrome được phát triển bởi https://zackbanack.com, và tính năng chính của nó là "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sponsor Skipper

Tải xuống các tệp mở rộng Sponsor Skipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sponsor Skipper Sponsor Skipper
ID jfdipdnjgckbpkomodlcfhmkencihepc
URL Chính Thức https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc
Mô tả Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
Kích Thước Tệp 20.04 KB
Số Lần Cài Đặt 232
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-11-26
Ngày Phát Hành 2019-11-25
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://zackbanack.com
Loại Thanh Toán free
Trang Web Mở Rộng https://www.zackbanack.com
URL Trang Trợ Giúp https://www.paypal.me/zackbanack
Ngôn Ngữ Được Hỗ Trợ 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
}