YouTube Randomiser

Shuffle YouTube albums.

YouTube Randomiser क्या है?

YouTube Randomiser James & Chris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shuffle YouTube albums."।

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

screenshot

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

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

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

                        Many times you come across YouTube videos that contain full albums.  Often the songs are listed in the description, along with their timestamps. This extension allows you to shuffle the songs and to easily find the name of what song is currently playing.

-Video hide button added.

-Sometimes does not activate properly on pages that it should.  A refresh of the page should fix this.

If you have any issues please submit them to: https://github.com/jamesthompson275/YoutubeRandomiser                    

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

नाम YouTube Randomiser YouTube Randomiser
ID kbonbjcebioebdkiceoobjjgdjllmklo
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-randomiser/kbonbjcebioebdkiceoobjjgdjllmklo
विवरण Shuffle YouTube albums.
फ़ाइल का आकार 12.55 KB
स्थापना संख्या 254
वर्तमान संस्करण 0.8.1
अंतिम अपडेट 2016-11-16
प्रकाशन तिथि 2016-11-15
रेटिंग 3.29/5 कुल 7 रेटिंग्स
डेवलपर James & Chris
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Randomiser",
    "description": "Shuffle YouTube albums.",
    "version": "0.8.1",
    "icons": {
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scripts\/inject.js"
            ],
            "css": [
                "styles\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/extension.js"
    ],
    "background": {
        "scripts": [
            "scripts\/bootstrap.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.youtube.com\/",
        "http:\/\/www.youtube.com\/"
    ],
    "page_action": {
        "default_title": "YouTube Randomiser",
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    }
}