Pandora History
Keep track of the Pandora songs that you have listened to.
Co to jest Pandora History?
Pandora History to rozszerzenie Chrome opracowane przez David McNavish, a jego główną funkcją jest „Keep track of the Pandora songs that you have listened to.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pandora History
Pobierz pliki rozszerzeń Pandora History w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                                             Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | cbodjnhecijlkbaimepgidkppmgankei | 
| Oficjalny URL | https://chromewebstore.google.com/detail/pandora-history/cbodjnhecijlkbaimepgidkppmgankei | 
| Opis | Keep track of the Pandora songs that you have listened to. | 
| Rozmiar pliku | 23.01 KB | 
| Liczba instalacji | 283 | 
| Aktualna Wersja | 1.2 | 
| Ostatnia Aktualizacja | 2013-02-19 | 
| Data Publikacji | 2013-02-19 | 
| Ocena | 4.60/5 Łącznie 5 Oceny | 
| Deweloper | David McNavish | 
| Typ Płatności | free | 
| Obsługiwane Języki | en | 
| manifest.json | |
 {
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pandora History",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Keep track of the Pandora songs that you have listened to.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "js": [
                "songProcessor.js"
            ],
            "run_at": "document_end"
        }
    ]
}  |  |