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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a repeat button to the HTML5 player to loop over a single track after 1 second delay"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube™ Repeat Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}