Kikimasu
A small extension allowing continuous playback of Pandora.
什麼是Kikimasu?
Kikimasu是由Dillon Hafer開發的Chrome擴展程式,該擴展的主要功能是“A small extension allowing continuous playback of Pandora.”。
擴展截圖
下載Kikimasu擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | niampljeillbljnabimbieoiddhmboop |
官方網址 | 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\/*" ] } |