Music Beta Skip controller

The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…

Music Beta Skip controller क्या है?

Music Beta Skip controller MAD द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…"।

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

screenshot
screenshot

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

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

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

                        The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new tab with the Music Beta Web App in it if none is already available.

This Music Beta Skip controller can be used side by side with the Music Beta Play/Pause Browser Action available here: https://chrome.google.com/webstore/detail/lblkffdkmmemjagfanapkgkogilikbad.

The code for these extensions is open source and available here:
http://code.google.com/p/music-beta-controller/

You can see what was added to individual releases here:
https://code.google.com/p/music-beta-controller/wiki/ReleaseNotes

You can file bugs and feature requests here:
http://code.google.com/p/music-beta-controller/issues/list

You can use this other group to discuss usage of these extensions: http://groups.google.com/group/music-beta-controller-discuss

And you can register to this one for communicating with other users of these extensions: http://groups.google.com/group/music-beta-controller-users                    

एक्सटेंशन की मूल जानकारी

नाम Music Beta Skip controller Music Beta Skip controller
ID lfpilffkipfhpoccjdiebpdjbdmfpefg
आधिकारिक URL https://chromewebstore.google.com/detail/music-beta-skip-controlle/lfpilffkipfhpoccjdiebpdjbdmfpefg
विवरण The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…
फ़ाइल का आकार 32.4 KB
स्थापना संख्या 112
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2014-05-28
प्रकाशन तिथि 2014-05-27
रेटिंग 4.62/5 कुल 26 रेटिंग्स
डेवलपर MAD
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "logo-19x19.ico",
        "default_title": "Music Beta Skip controller",
        "name": "Skip"
    },
    "content_scripts": [
        {
            "js": [
                "play_state_notifier.js"
            ],
            "matches": [
                "*:\/\/play.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "skip-128x128.png",
        "48": "skip-48x48.png",
        "16": "skip-16x16.png"
    },
    "name": "Music Beta Skip controller",
    "permissions": [
        "tabs",
        "*:\/\/play.google.com\/*"
    ],
    "version": "1.0.5"
}