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