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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}