Kikimasu

A small extension allowing continuous playback of Pandora.

Kikimasuคืออะไร?

Kikimasu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dillon Hafer และคุณลักษณะหลักของมันคือ "A small extension allowing continuous playback of Pandora."

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

screenshot

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

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

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

                        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\/*"
    ]
}