Kikimasu
A small extension allowing continuous playback of Pandora.
Kikimasu란 무엇입니까?
Kikimasu은(는) Dillon Hafer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A small extension allowing continuous playback of Pandora."입니다.
확장 프로그램 스크린샷
Kikimasu 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 확장 프로그램 기본 정보
| 이름 | |
| 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\/*"
]
} | |