Youtube™ Shortcuts

Focus on the Youtube player with a the press of a button

Youtube™ Shortcuts क्या है?

Youtube™ Shortcuts Daniel Pham द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Focus on the Youtube player with a the press of a button"।

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

screenshot

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

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

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

                        A collection of keyboard shortcuts for YouTube to make navigation faster.

Show shortcut - Shift + /

Default Shortcuts:
Focus on the player - "." (dot/period)
Unfocus the current element - "Esc"
Go to subscription box - "H"
Go to user profile - "U"
Navigate video list - "J" & "K"
Navigate tab strip - "[ & ]"
Follow link to new tab - "Shift + Enter"
Like the video - "A"
Dislike the video - "Z"
Subscribe - "S"
Add to playlist - "P"
Expand video description - "O"

Source Code:
https://github.com/danhp/youtube-shortcuts                    

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

नाम Youtube™ Shortcuts Youtube™ Shortcuts
ID fnapinimcdpmgkedhjbfckmpjppnbhba
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba
विवरण Focus on the Youtube player with a the press of a button
फ़ाइल का आकार 68.71 KB
स्थापना संख्या 548
वर्तमान संस्करण 1.7.2
अंतिम अपडेट 2019-11-19
प्रकाशन तिथि 2019-11-19
रेटिंग 2.85/5 कुल 20 रेटिंग्स
डेवलपर Daniel Pham
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/danhp/youtube-shortcuts
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube\u2122 Shortcuts",
    "version": "1.7.2",
    "description": "Focus on the Youtube player with a the press of a button",
    "homepage_url": "https:\/\/phamdaniel.github.io",
    "options_page": "options.html",
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "lib\/facebox.css",
                "popup.css"
            ],
            "js": [
                "lib\/jquery-3.0.0.min.js",
                "lib\/keymaster.min.js",
                "lib\/facebox.js",
                "injected.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "popup.html"
    ]
}