Youtube Playlist Extension

An extension that allows you to listen to your Youtube playlists without ever opening the Youtube page.

Youtube Playlist Extensionคืออะไร?

Youtube Playlist Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Antoinette Janus และคุณลักษณะหลักของมันคือ "An extension that allows you to listen to your Youtube playlists without ever opening the Youtube page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Playlist Extension

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Playlist Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Ever wish that one song was on Spotify? Found an awesome remix on YouTube but it's not on Google Play? Never fear! The YouTube Playlist Chrome Extension is here. This extension allows you to play public YouTube playlists without ever opening the website. Friend made a playlist? Awesome! You can search by their name (or username if an older YouTube account) and find them. Made a great work playlist but your boss is hovering your shoulder? Search for your name and choose a playlist you made just for this occasion! Never deal with appearing unproductive again!

Things to note:
    -Some videos are set not to be embeddable by the video author. This means that they are not playable through this extension. I have no control over this. If you would like the video to be available through the extension, I recommend reaching out to the author of the video and requesting the video be set as embeddable.

=============
    Update 12/14
=============
-Keyboard Media Keys now work with Extension, as long as Chrome is in focus

=============
    Update 12/21
=============
-Keyboard Media Keys now work with Extension, even if Chrome is out of focus
-Users can now listen to Private Playlists, based on the account that's logged in to the Chrome Browser


Please e-mail any bugs or ideas on how to improve this plugin to [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Playlist Extension Youtube Playlist Extension
ID adiolmfilpjpekmppdigbnbciceebejg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-playlist-extensio/adiolmfilpjpekmppdigbnbciceebejg
คำอธิบาย An extension that allows you to listen to your Youtube playlists without ever opening the Youtube page.
ขนาดไฟล์ 118 KB
จำนวนการติดตั้ง 980
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2015-12-21
วันที่เผยแพร่ 2015-12-21
คะแนน 2.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Antoinette Janus
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://acjdesigns.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Playlist Extension",
    "version": "1.2.2",
    "description": "An extension that allows you to listen to your Youtube playlists without ever opening the Youtube page.",
    "icons": {
        "16": "images\/16x16.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/16x16.png",
            "48": "images\/48x48.png",
            "128": "images\/128x128.png"
        },
        "default_title": "Youtube Playlist Extension",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "youtube-widget.js",
            "jquery.js",
            "functions.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "identity",
        "identity.email"
    ],
    "oauth2": {
        "client_id": "493494296320-csmf2e63nps2laip71b6go94dvcj5oma.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube",
            "https:\/\/www.googleapis.com\/auth\/youtube.readonly",
            "https:\/\/www.googleapis.com\/auth\/youtube.upload",
            "https:\/\/www.googleapis.com\/auth\/youtubepartner"
        ]
    },
    "commands": {
        "play-or-pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Pause YouTube Song",
            "global": true
        },
        "next-song": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Play Next YouTube Song",
            "global": true
        },
        "prev-song": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Play Previous YouTube Song",
            "global": true
        }
    },
    "author": "Antoinette Janus"
}