Music Keys

Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.

Music Keys क्या है?

Music Keys shubham द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks."।

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

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

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

                        Plays/pauses YouTube videos, gaana, SoundCloud, 8tracks. Helpful when you are listening music and working on some other chrome tab, or chrome is in background. Can only play/pause 1st tab out of multiple tabs running, shortcut is "Ctrl+shift+9", global shortcut. You can also get shortcuts from "keyboard shortcuts" in "chrome://extensions".                    

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

नाम Music Keys Music Keys
ID odmndmgmfakieianebiibnoegimffpjh
आधिकारिक URL https://chromewebstore.google.com/detail/music-keys/odmndmgmfakieianebiibnoegimffpjh
विवरण Adds global shortcuts for play/pause, next, previous to music/videos in YouTube, gaana, SoundCloud, 8tracks.
फ़ाइल का आकार 148 KB
स्थापना संख्या 81
वर्तमान संस्करण 3.1
अंतिम अपडेट 2018-01-14
प्रकाशन तिथि 2018-01-14
रेटिंग 4.67/5 कुल 21 रेटिंग्स
डेवलपर shubham
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/shub30may92/Youtube-Chrome-Extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Keys",
    "description": "Adds global shortcuts for play\/pause, next, previous to music\/videos in YouTube, gaana, SoundCloud, 8tracks.",
    "version": "3.1",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        "https:\/\/www.youtube.com\/",
        "https:\/\/gaana.com\/",
        "https:\/\/soundcloud.com\/",
        "http:\/\/8tracks.com\/",
        "https:\/\/play.spotify.com\/"
    ],
    "commands": {
        "play_previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+8",
                "linux": "Ctrl+Shift+8",
                "mac": "Command+Shift+8"
            },
            "description": "Play previous",
            "global": true
        },
        "play_pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "linux": "Ctrl+Shift+9"
            },
            "description": "Play\/pause",
            "global": true
        },
        "play_next": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "linux": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Play Next",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Y",
                "linux": "Alt+Y",
                "mac": "Alt+Y"
            },
            "description": "Play\/pause"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}