YouTube Repeater

Repeats YouTube video after it ends.

YouTube Repeater क्या है?

YouTube Repeater shogo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Repeats YouTube video after it ends."।

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

screenshot

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

crx प्रारूप में YouTube Repeater एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        You can make your YouTube video repeat automatically right from the page.
- No external link
- No need for playlists
- Repeat infinitely with just 1 click

----- v.0.0.4 -----
Fixed the extension to work with the new YouTube design from fall 2018
----- v.0.0.3 -----
Fixed the icon to show inactive when on non-youtube pages.
----- v.0.0.2 -----
Fixed icon to show the repeat status when tabs are switched.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
विवरण Repeats YouTube video after it ends.
फ़ाइल का आकार 16.98 KB
स्थापना संख्या 423
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2019-03-18
प्रकाशन तिथि 2019-03-18
रेटिंग 3.50/5 कुल 4 रेटिंग्स
डेवलपर shogo
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://shogo.eu/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Repeater",
    "description": "Repeats YouTube video after it ends.",
    "version": "0.0.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "webNavigation"
    ]
}