DI Remote
Plays and stops Digitially Imported music player running in a tab
¿Qué es DI Remote?
DI Remote es una extensión de Chrome desarrollada por David Laurell, y su función principal es "Plays and stops Digitially Imported music player running in a tab".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión DI Remote
Descarga archivos de extensión DI Remote en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Have multiple tabs open and don't want to search for the tab with Digitally Imported in it? Then this will let you quickly play and stop the music by an easy to reach button from everywhere!
Información Básica de la Extensión
Nombre | |
ID | gilkmoiggpejjinifplmidnhlmibgohd |
URL Oficial | https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd |
Descripción | Plays and stops Digitially Imported music player running in a tab |
Tamaño del Archivo | 15.68 KB |
Cantidad de Instalaciones | 71 |
Versión Actual | 0.1.1 |
Última Actualización | 2015-02-01 |
Fecha de Publicación | 2015-02-01 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | David Laurell |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DI Remote", "version": "0.1.1", "description": "Plays and stops Digitially Imported music player running in a tab", "icons": { "48": "play48.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "play19.png", "default_title": "Start\/Stop Digitally Imported" }, "content_scripts": [ { "matches": [ "http:\/\/www.di.fm\/*" ], "js": [ "content.js" ] } ], "permissions": [ "http:\/\/www.di.fm\/*", "tabs" ] } |