DI Remote

Plays and stops Digitially Imported music player running in a tab

Was ist DI Remote?

DI Remote ist eine Chrome-Erweiterung, die von David Laurell entwickelt wurde, und ihr Hauptmerkmal ist "Plays and stops Digitially Imported music player running in a tab".

Erweiterungsscreenshots

screenshot

DI Remote-Erweiterungs-CRX-Datei herunterladen

Laden Sie DI Remote-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name DI Remote DI Remote
ID gilkmoiggpejjinifplmidnhlmibgohd
Offizielle URL https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd
Beschreibung Plays and stops Digitially Imported music player running in a tab
Dateigröße 15.68 KB
Installationsanzahl 71
Aktuelle Version 0.1.1
Letztes Update 2015-02-01
Veröffentlichungsdatum 2015-02-01
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler David Laurell
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}