DI Remote

Plays and stops Digitially Imported music player running in a tab

Cos'è DI Remote?

DI Remote è un'estensione di Chrome sviluppata da David Laurell, e la sua funzione principale è "Plays and stops Digitially Imported music player running in a tab".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DI Remote

Scarica i file di estensione DI Remote in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome DI Remote DI Remote
ID gilkmoiggpejjinifplmidnhlmibgohd
URL Ufficiale https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd
Descrizione Plays and stops Digitially Imported music player running in a tab
Dimensione del File 15.68 KB
Conteggio Installazioni 71
Versione Corrente 0.1.1
Ultimo Aggiornamento 2015-02-01
Data di Pubblicazione 2015-02-01
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore David Laurell
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}