YouTube Hotkeys

Your YouTube Hotkeys for play, pause, play next video and repeat.

YouTube Hotkeys क्या है?

YouTube Hotkeys Giovani Silva द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Your YouTube Hotkeys for play, pause, play next video and repeat."।

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

screenshot

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

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

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

                        This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser!

You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not.

Default Keyboard shortcuts:

Next Video     : Alt+Shift+Period
Play/Pause     : Alt+Shift+P
Previous Video : Alt+Shift+Comma
Repeat Video   : Alt+Shift+R

To configure go to 
chrome://extensions/configureCommands                    

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

नाम YouTube Hotkeys YouTube Hotkeys
ID nikecddgokknoehjljdkhkilicpcacmo
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo
विवरण Your YouTube Hotkeys for play, pause, play next video and repeat.
फ़ाइल का आकार 75.94 KB
स्थापना संख्या 785
वर्तमान संस्करण 1.1
अंतिम अपडेट 2018-04-06
प्रकाशन तिथि 2018-04-06
रेटिंग 4.53/5 कुल 15 रेटिंग्स
डेवलपर Giovani Silva
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Hotkeys",
    "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.",
    "version": "1.1",
    "incognito": "split",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "next": {
            "description": "Next track",
            "suggested_key": "Alt+Shift+Period"
        },
        "play-pause": {
            "description": "Play\/Pause",
            "suggested_key": "Alt+Shift+P"
        },
        "previous": {
            "description": "Previous track",
            "suggested_key": "Alt+Shift+Comma"
        },
        "repeat": {
            "description": "Repeat",
            "suggested_key": "Alt+Shift+R"
        }
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js",
        "content.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "contentSettings"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}