DI Remote

Plays and stops Digitially Imported music player running in a tab

什么是DI Remote?

DI Remote是由David Laurell开发的Chrome扩展程序,该扩展的主要功能是“Plays and stops Digitially Imported music player running in a tab”。

扩展截图

screenshot

下载DI Remote扩展crx文件

下载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!                    

扩展基本信息

名称 DI Remote DI Remote
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"
    ]
}