YouTube Chapters In Player

Shows YouTube chapters right in the player

YouTube Chapters In Player là gì?

YouTube Chapters In Player là một tiện ích mở rộng Chrome được phát triển bởi ris58h, và tính năng chính của nó là "Shows YouTube chapters right in the player".

Ả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 Chapters In Player

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

                        Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player.

Key features:
- Shows chapters right in the player.
- Works in Fullscreen and Theater modes.
- Works for embedded videos.
- Previous/Next chapter buttons.
- Key Moments support.
- Chapters from pinned comment.
- Open Source https://github.com/ris58h/youtube-chapters-in-player                    

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

Tên YouTube Chapters In Player YouTube Chapters In Player
ID ikalbbakholajifblhnmbcffhmhnnohl
URL Chính Thức https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl
Mô tả Shows YouTube chapters right in the player
Kích Thước Tệp 14.15 KB
Số Lần Cài Đặt 955
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2023-11-27
Ngày Phát Hành 2022-10-13
Đánh Giá 4.13/5 Tổng số 8 Đánh Giá
Nhà Phát Triển ris58h
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ris58h.github.io/youtube-chapters-in-player/
URL Trang Trợ Giúp https://github.com/ris58h/youtube-chapters-in-player/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Chapters In Player",
    "description": "Shows YouTube chapters right in the player",
    "version": "0.3.2",
    "applications": {
        "gecko": {
            "id": "youtube-chapters-in-player@ris58h"
        }
    },
    "permissions": [
        "webRequest",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/embed\/*"
            ],
            "all_frames": true,
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ]
}