PandoraList

This extension creates a playlist off of Pandora.

PandoraListคืออะไร?

PandoraList เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension creates a playlist off of Pandora."

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

screenshot

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

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

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

                        Creates a list of all the songs you listened to on Pandora. 

Coming Features:
-Copy button only copies table
-Static list header
-Cleaner GUI
-More...                    

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

ชื่อ PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
คำอธิบาย This extension creates a playlist off of Pandora.
ขนาดไฟล์ 94.46 KB
จำนวนการติดตั้ง 122
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2013-08-11
วันที่เผยแพร่ 2013-08-11
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PandoraList",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension creates a playlist off of Pandora.",
    "icons": {
        "16": "png\/icon16.png",
        "48": "png\/icon48.png",
        "128": "png\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/html\/index.html",
    "page_action": {
        "default_icon": "png\/icon19.png",
        "default_title": "PandoraList",
        "default_popup": "src\/html\/page_action.html"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*"
            ],
            "js": [
                "src\/js\/jquery-2.0.3.js",
                "src\/js\/pandora.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/js\/jquery-2.0.3.min.map"
    ]
}