PandoraList

This extension creates a playlist off of Pandora.

Apa itu PandoraList?

PandoraList adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension creates a playlist off of Pandora.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi PandoraList

Unduh file ekstensi PandoraList dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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...                    

Informasi Dasar Ekstensi

Nama PandoraList PandoraList
ID chhebofcjflcmkijapgaanihbliikfba
URL Resmi https://chromewebstore.google.com/detail/pandoralist/chhebofcjflcmkijapgaanihbliikfba
Deskripsi This extension creates a playlist off of Pandora.
Ukuran File 94.46 KB
Jumlah Instalasi 122
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2013-08-11
Tanggal Publikasi 2013-08-11
Penilaian 3.67/5 Total 3 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}