YouTube Randomiser

Shuffle YouTube albums.

Wat is YouTube Randomiser?

YouTube Randomiser is een Chrome-extensie ontwikkeld door James & Chris, en de belangrijkste functie is "Shuffle YouTube albums.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Randomiser

Download YouTube Randomiser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam YouTube Randomiser YouTube Randomiser
ID kbonbjcebioebdkiceoobjjgdjllmklo
Officiële URL https://chromewebstore.google.com/detail/youtube-randomiser/kbonbjcebioebdkiceoobjjgdjllmklo
Beschrijving Shuffle YouTube albums.
Bestandsgrootte 12.55 KB
Aantal Installaties 254
Huidige Versie 0.8.1
Laatst Bijgewerkt 2016-11-16
Publicatiedatum 2016-11-15
Beoordeling 3.29/5 Totaal 7 Beoordelingen
Ontwikkelaar James & Chris
Betalingswijze free
Ondersteunde Talen 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"
    }
}