YouTube Randomiser

Shuffle YouTube albums.

Что такое YouTube Randomiser?

YouTube Randomiser - это расширение Chrome, разработанное James & Chris, и его основная функция - "Shuffle YouTube albums.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Randomiser

Скачайте файлы расширений YouTube Randomiser в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    }
}