DI Remote

Plays and stops Digitially Imported music player running in a tab

O que é DI Remote?

DI Remote é uma extensão do Chrome desenvolvida por David Laurell, e sua principal característica é "Plays and stops Digitially Imported music player running in a tab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão DI Remote

Baixe arquivos de extensão DI Remote no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome DI Remote DI Remote
ID gilkmoiggpejjinifplmidnhlmibgohd
URL Oficial https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd
Descrição Plays and stops Digitially Imported music player running in a tab
Tamanho do Arquivo 15.68 KB
Contagem de Instalações 71
Versão Atual 0.1.1
Última Atualização 2015-02-01
Data de Publicação 2015-02-01
Classificação 4.50/5 Total de 2 Avaliações
Desenvolvedor David Laurell
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}