Kikimasu

A small extension allowing continuous playback of Pandora.

Kikimasu क्या है?

Kikimasu Dillon Hafer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A small extension allowing continuous playback of Pandora."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Kikimasu एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Kikimasu Kikimasu
ID niampljeillbljnabimbieoiddhmboop
आधिकारिक URL https://chrome.google.com/webstore/detail/kikimasu/niampljeillbljnabimbieoiddhmboop
विवरण A small extension allowing continuous playback of Pandora.
फ़ाइल का आकार 26.32 KB
स्थापना संख्या 111
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-06-09
प्रकाशन तिथि 2015-06-09
रेटिंग 3.63/5 कुल 8 रेटिंग्स
डेवलपर Dillon Hafer
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dillonhafer/kikimasu
सहायता पृष्ठ URL https://github.com/dillonhafer/kikimasu/issues
समर्थित भाषाएँ 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\/*"
    ]
}