YouTube Repeat

Repeats a YouTube video

YouTube Repeat क्या है?

YouTube Repeat Jimmy Fu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Repeats a YouTube video"।

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

screenshot

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

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

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

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

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

नाम YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
विवरण Repeats a YouTube video
फ़ाइल का आकार 24.45 KB
स्थापना संख्या 2,323
वर्तमान संस्करण 1.1
अंतिम अपडेट 2015-10-09
प्रकाशन तिथि 2015-10-08
रेटिंग 4.37/5 कुल 35 रेटिंग्स
डेवलपर Jimmy Fu
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}