YouTube Chapters In Player

Shows YouTube chapters right in the player

什么是YouTube Chapters In Player?

YouTube Chapters In Player是由ris58h开发的Chrome扩展程序,该扩展的主要功能是“Shows YouTube chapters right in the player”。

扩展截图

screenshot

下载YouTube Chapters In Player扩展crx文件

下载YouTube Chapters In Player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 YouTube Chapters In Player YouTube Chapters In Player
ID ikalbbakholajifblhnmbcffhmhnnohl
官方URL https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl
简介 Shows YouTube chapters right in the player
文件大小 14.15 KB
安装次数 955
当前版本 0.3.2
更新时间 2023-11-27
上架时间 2022-10-13
评分 4.13/5 共8次评分
开发者 ris58h
电子邮箱 [email protected]
付费类型 free
扩展官网 https://ris58h.github.io/youtube-chapters-in-player/
帮助页面URL https://github.com/ris58h/youtube-chapters-in-player/issues
支持的语言 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"
            ]
        }
    ]
}