YouTube Skip Chapter

Automatically skip chapters of YouTube videos you don't want to watch.

YouTube Skip Chapter là gì?

YouTube Skip Chapter là một tiện ích mở rộng Chrome được phát triển bởi skeetsdev, và tính năng chính của nó là "Automatically skip chapters of YouTube videos you don't want to watch.".

Ả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 YouTube Skip Chapter

Tải xuống các tệp mở rộng YouTube Skip Chapter 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

                        Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle?

This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically.

GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext                    

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

Tên YouTube Skip Chapter YouTube Skip Chapter
ID cjpkoghfjpkoapnmkppphegcmchghjdn
URL Chính Thức https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn
Mô tả Automatically skip chapters of YouTube videos you don't want to watch.
Kích Thước Tệp 103 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-02-24
Ngày Phát Hành 2020-11-30
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển skeetsdev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Skip Chapter",
    "description": "Automatically skip chapters of YouTube videos you don't want to watch.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "youtube_skip_chapter.png",
        "default_title": "Click here to edit skip words",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "*:\/\/*.youtube.com\/watch*",
        "storage"
    ]
}