DI Remote

Plays and stops Digitially Imported music player running in a tab

DI Remote क्या है?

DI Remote David Laurell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plays and stops Digitially Imported music player running in a tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DI Remote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}