Watch Later Shortcut for YouTube™

Add and remove current video from the Watch Later list using a keyboard shortcut.

Watch Later Shortcut for YouTube™ क्या है?

Watch Later Shortcut for YouTube™ Mykhailo Zachepylo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add and remove current video from the Watch Later list using a keyboard shortcut."।

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

screenshot

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

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

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

                        For Mac:
- ⌥ Option + ⇧ Shift + L to Add Video
- ⌥ Option + L to Remove Video

For Windows:
- Alt + ⇧ Shift + L to Add Video
- Alt + L to Remove Video

For ChromeOS:
- Alt + K to Add Video
- Alt + L to Remove Video

As the result the notification about successful list update should appear.

Shortcuts can be changed in the extension's options at: chrome://extensions/shortcuts.

Extension designed to work on the desktop version of the YouTube™. The following YouTube™ website updates might break the functionality of the extension, please be patient for an update.

This extension is open source: https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext.

YouTube™ is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions.                    

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

नाम Watch Later Shortcut for YouTube™ Watch Later Shortcut for YouTube™
ID dhegojkfhodaifdnkoigmdoncoonbifd
आधिकारिक URL https://chromewebstore.google.com/detail/watch-later-shortcut-for/dhegojkfhodaifdnkoigmdoncoonbifd
विवरण Add and remove current video from the Watch Later list using a keyboard shortcut.
फ़ाइल का आकार 7.61 KB
स्थापना संख्या 888
वर्तमान संस्करण 1.1
अंतिम अपडेट 2023-08-07
प्रकाशन तिथि 2023-03-21
रेटिंग 5.00/5 कुल 21 रेटिंग्स
डेवलपर Mykhailo Zachepylo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext
सहायता पृष्ठ URL https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Watch Later Shortcut for YouTube\u2122",
    "version": "1.1",
    "author": "[email protected]",
    "description": "Add and remove current video from the Watch Later list using a keyboard shortcut.",
    "manifest_version": 3,
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "icons": {
        "32": "\/icons\/32.png",
        "128": "\/icons\/128.png"
    },
    "commands": {
        "add-to-watch-later": {
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L",
                "chromeos": "Alt+K"
            },
            "description": "Add the current video from the Watch Later list."
        },
        "remove-from-watch-later": {
            "suggested_key": {
                "default": "Alt+L",
                "mac": "Alt+L",
                "chromeos": "Alt+L"
            },
            "description": "Remove the current video from the Watch Later list."
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}