Kikimasu

A small extension allowing continuous playback of Pandora.

Was ist Kikimasu?

Kikimasu ist eine Chrome-Erweiterung, die von Dillon Hafer entwickelt wurde, und ihr Hauptmerkmal ist "A small extension allowing continuous playback of Pandora.".

Erweiterungsscreenshots

screenshot

Kikimasu-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kikimasu-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        I wanted to be able to listen to Pandora around the house without having to keep clicking a link every hour, so I wrote this extension for Chrome that "props" open Pandora by clicking the "I'm still here" link automatically. It also ensures that the music stream is not paused at any point.

Features
-----------------------
• Clicks the 'I'm still here' link when playing pandora.
• Ensures the pandora stream is always playing to avert pandora's auto-pausing after 4 hours
• You can manually play/pause pandora by clicking the url icon. 

Security
-----------------------
IMPORTANT: WE DO NOT STORE OR LOOK AT PANDORA ACCOUNT INFO! Prop open requires access to the chrome.tabs API, but in NO CASE will the extension look at anything personal or save anything. 
For more details on this technical constraint, please check out this link: 
http://code.google.com/chrome/extensions/permission_warnings.html#warnings

Open Source
-----------------------
To see the complete source code for this project you can find it on GitHub:
https://github.com/dillonhafer/kikimasu                    

Grundlegende Informationen zur Erweiterung

Name Kikimasu Kikimasu
ID niampljeillbljnabimbieoiddhmboop
Offizielle URL https://chrome.google.com/webstore/detail/kikimasu/niampljeillbljnabimbieoiddhmboop
Beschreibung A small extension allowing continuous playback of Pandora.
Dateigröße 26.32 KB
Installationsanzahl 111
Aktuelle Version 1.0
Letztes Update 2015-06-09
Veröffentlichungsdatum 2015-06-09
Bewertung 3.63/5 Insgesamt 8 Bewertungen
Entwickler Dillon Hafer
Zahlungsart free
Erweiterungswebsite https://github.com/dillonhafer/kikimasu
Hilfeseite URL https://github.com/dillonhafer/kikimasu/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kikimasu",
    "version": "1.0",
    "description": "A small extension allowing continuous playback of Pandora.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "kikimasu-19.png",
        "default_title": "Kikimasu",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "kikimasu.js"
            ],
            "matches": [
                "http:\/\/www.pandora.com\/*",
                "https:\/\/www.pandora.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "kikimasu-48.png",
        "128": "kikimasu-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "tabs",
        "http:\/\/www.pandora.com\/*",
        "https:\/\/www.pandora.com\/*"
    ]
}