Add to Sonos Queue

Add tracks from SoundCloud to your Sonos queue

Add to Sonos Queueคืออะไร?

Add to Sonos Queue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย robbi5 และคุณลักษณะหลักของมันคือ "Add tracks from SoundCloud to your Sonos queue"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to Sonos Queue

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

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

                        Add tracks and playlists directly from an open SoundCloud track page or Widget to your Sonos queue.

You need a Sonos Player and connect it to your SoundCloud Account. For more details see: http://sonos.soundcloud.com

This extension is open source. Fork it, improve it oder simply read the source at
https://github.com/robbi5/add-to-sonos-queue

---
Changelog:

1.0.0: Add Buttons to Tracks, Playlists and Soundcloud Widgets
0.3.1: Upgraded to new Chrome Extension Options
0.3.0: Added ability to queue an users liked tracks like an playlist
0.2.0: Added support for SoundCloud Playlists (aka Sets)
0.1.1: First Public Release

---
This extension and its author are not affiliated with Sonos or SoundCloud.                    

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

ชื่อ Add to Sonos Queue Add to Sonos Queue
ID mjlgdiclanhcloangjbhpmoagbhmjlgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/add-to-sonos-queue/mjlgdiclanhcloangjbhpmoagbhmjlgc
คำอธิบาย Add tracks from SoundCloud to your Sonos queue
ขนาดไฟล์ 221 KB
จำนวนการติดตั้ง 2,457
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2015-03-29
วันที่เผยแพร่ 2015-03-29
คะแนน 3.79/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา robbi5
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/robbi5/add-to-sonos-queue
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Add to Sonos Queue",
    "version": "1.0.0",
    "description": "Add tracks from SoundCloud to your Sonos queue",
    "homepage_url": "https:\/\/github.com\/robbi5\/add-to-sonos-queue",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_title": "Add to Sonos Queue",
        "default_popup": "page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "css": [
                "css\/add-to-sonos-queue.css"
            ],
            "js": [
                "js\/sc.js"
            ]
        },
        {
            "matches": [
                "https:\/\/w.soundcloud.com\/player*"
            ],
            "css": [
                "css\/add-to-sonos-queue.css"
            ],
            "js": [
                "js\/sc-widget.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content_script\/loading.gif",
        "content_script\/loading-dark.gif"
    ],
    "options_page": "settings\/settings.html",
    "options_ui": {
        "page": "settings\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "storage",
        "https:\/\/api.soundcloud.com\/*",
        "http:\/\/*\/MediaRenderer\/AVTransport\/Control",
        "http:\/\/*\/xml\/device_description.xml"
    ]
}