DI Remote
Plays and stops Digitially Imported music player running in a tab
Что такое DI Remote?
DI Remote - это расширение Chrome, разработанное David Laurell, и его основная функция - "Plays and stops Digitially Imported music player running in a tab".
Снимки экрана расширения
Скачать файл CRX расширения DI Remote
Скачайте файлы расширений DI Remote в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | |
ID | gilkmoiggpejjinifplmidnhlmibgohd |
Официальный URL | https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd |
Описание | Plays and stops Digitially Imported music player running in a tab |
Размер файла | 15.68 KB |
Количество установок | 71 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2015-02-01 |
Дата публикации | 2015-02-01 |
Рейтинг | 4.50/5 Всего 2 оценок |
Разработчик | David Laurell |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |