YouTube™ Repeat Button

Adds a repeat button to the HTML5 player to loop over a single track after 1 second delay

什么是YouTube™ Repeat Button?

YouTube™ Repeat Button是由lunu.bounir开发的Chrome扩展程序,该扩展的主要功能是“Adds a repeat button to the HTML5 player to loop over a single track after 1 second delay”。

扩展截图

screenshot

下载YouTube™ Repeat Button扩展crx文件

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

扩展使用说明

                        The "YouTube Repeat Button" extension addresses the missing repeat button on the HTML5 YouTube player. By installing this extension, you can have the missing repeat button available. By default, the button is inactive. To repeat a single track, click the button once. When the extension is active, the button's color turns white. In this mode, once the video finishes, the extension pauses the player for one second, seeks the start of the track, and replays it.

Please note that before the 0.2.1 release, this extension only functions in normal playing mode. If a track is in playlist mode and the repeat button is pressed, the extension will suggest switching to the normal playing mode.

Furthermore, the extension is disabled when a new player is opened. If you wish to enable the button, append "&repeat=true" to the URL of the YouTube page.

Starting from the 0.2.1 release, the extension utilizes the native loop function and maintains the loop state during navigation between tracks.                    

扩展基本信息

名称 YouTube™ Repeat Button YouTube™ Repeat Button
ID lapfofmpmghklaegbdamgdojjninpnkg
官方URL https://chromewebstore.google.com/detail/youtube-repeat-button/lapfofmpmghklaegbdamgdojjninpnkg
简介 Adds a repeat button to the HTML5 player to loop over a single track after 1 second delay
文件大小 44.15 KB
安装次数 10,000
当前版本 0.2.4
更新时间 2023-07-19
上架时间 2019-08-24
评分 4.71/5 共31次评分
开发者 lunu.bounir
电子邮箱 [email protected]
付费类型 free
扩展官网 https://webextension.org/listing/youtube-tools.html?from=repeat-button
帮助页面URL https://webextension.org/listing/youtube-tools.html?from=repeat-button
隐私政策页面URL https://add0n.com/policies/lunu.bounir.txt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Repeat Button",
    "description": "Adds a repeat button to the HTML5 player to loop over a single track after 1 second delay",
    "version": "0.2.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=repeat-button",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    }
}