DI Remote
Plays and stops Digitially Imported music player running in a tab
What is DI Remote?
DI Remote is a Chrome extension developed by David Laurell, and its main feature is "Plays and stops Digitially Imported music player running in a tab".
Extension Screenshots
Download DI Remote Extension CRX File
Download DI Remote extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | gilkmoiggpejjinifplmidnhlmibgohd |
Official URL | https://chrome.google.com/webstore/detail/di-remote/gilkmoiggpejjinifplmidnhlmibgohd |
Description | Plays and stops Digitially Imported music player running in a tab |
File Size | 15.68 KB |
Installation Count | 71 |
Current Version | 0.1.1 |
Last Updated | 2015-02-01 |
Publish Date | 2015-02-01 |
Rating | 4.50/5 Total 2 Ratings |
Developer | David Laurell |
Payment Type | free |
Supported Languages | 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" ] } |