YouQue

Queueing youtube videos

YouQue क्या है?

YouQue Pahvi67 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Queueing youtube videos"।

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

screenshot

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

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

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

                        YouQue will allow you to queue YouTube videos. All you need to do is open YouTube in adjacent tabs and they will play in order from left to right. It will also automatically stop videos to further help manage the tabs.

Currently this has no on/off button so you will have to disable it in extensions if you don't want to use it.

In case you have any questions or encounter any bugs please let me know.                    

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

नाम YouQue YouQue
ID jedkmelkipfnbcgbanaeogegckbfeejh
आधिकारिक URL https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh
विवरण Queueing youtube videos
फ़ाइल का आकार 38.07 KB
स्थापना संख्या 29
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-10-20
प्रकाशन तिथि 2014-10-20
रेटिंग 2.00/5 कुल 2 रेटिंग्स
डेवलपर Pahvi67
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouQue",
    "description": "Queueing youtube videos",
    "version": "1.0",
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube.fi\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.fi\/*",
                "https:\/\/*.youtube.fi\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "permissions": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube.fi\/*",
                "tabs"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "eventPage.js"
        ],
        "persistent": false
    }
}