YouTube Randomiser

Shuffle YouTube albums.

YouTube Randomiserとは何ですか?

YouTube RandomiserはJames & Chrisによって開発されたChromeの拡張機能で、その主な機能は「Shuffle YouTube albums.」です。

拡張機能のスクリーンショット

screenshot

YouTube Randomiser拡張機能のCRXファイルをダウンロード

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