Kikimasu
A small extension allowing continuous playback of Pandora.
Qu'est-ce que Kikimasu ?
Kikimasu est une extension Chrome développée par Dillon Hafer, et sa fonction principale est "A small extension allowing continuous playback of Pandora.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Kikimasu
Téléchargez les fichiers d'extension Kikimasu au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | niampljeillbljnabimbieoiddhmboop |
URL Officiel | https://chrome.google.com/webstore/detail/kikimasu/niampljeillbljnabimbieoiddhmboop |
Description | A small extension allowing continuous playback of Pandora. |
Taille du Fichier | 26.32 KB |
Nombre d'Installations | 111 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-06-09 |
Date de Publication | 2015-06-09 |
Évaluation | 3.63/5 Total 8 Évaluations |
Développeur | Dillon Hafer |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dillonhafer/kikimasu |
URL de la Page d'Aide | https://github.com/dillonhafer/kikimasu/issues |
Langues Prises en Charge | 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\/*" ] } |