DI Remote
Plays and stops Digitially Imported music player running in a tab
Co to jest DI Remote?
DI Remote to rozszerzenie Chrome opracowane przez David Laurell, a jego główną funkcją jest „Plays and stops Digitially Imported music player running in a tab”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DI Remote
Pobierz pliki rozszerzeń DI Remote w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gilkmoiggpejjinifplmidnhlmibgohd |
Oficjalny URL | https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd |
Opis | Plays and stops Digitially Imported music player running in a tab |
Rozmiar pliku | 15.68 KB |
Liczba instalacji | 71 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2015-02-01 |
Data Publikacji | 2015-02-01 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | David Laurell |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |