YouTube Subtitle Delay

Mini tool to delay the YouTube subtitles

YouTube Subtitle Delay क्या है?

YouTube Subtitle Delay Behnam Azimi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mini tool to delay the YouTube subtitles"।

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

screenshot

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

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

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

                        Mini tool to delay subtitles on the YouTube official website.

As you may know, YouTube doesn't have this functionality by default, and sometimes being able to delay subtitle streaming can be of great help, especially when you're trying to learn a new language. And this extension would help you to do so.

By default, you can change the delay time by "A" and "D" keyboard shortcuts. It's also possible to adjust your shortcuts.

This extension is only allowed to execute on the Youtube official website and I hope they add the subtitle delay options soon and make this extension useless :)                    

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

नाम YouTube Subtitle Delay YouTube Subtitle Delay
ID fegfigommgpglnlpdmgncojmkghbijkc
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-subtitle-delay/fegfigommgpglnlpdmgncojmkghbijkc
विवरण Mini tool to delay the YouTube subtitles
फ़ाइल का आकार 38.87 KB
स्थापना संख्या 1,051
वर्तमान संस्करण 1.7
अंतिम अपडेट 2023-12-27
प्रकाशन तिथि 2022-06-28
रेटिंग 4.00/5 कुल 8 रेटिंग्स
डेवलपर Behnam Azimi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/behnamazimi/youtube-subtitle-delay
सहायता पृष्ठ URL https://github.com/behnamazimi/youtube-subtitle-delay/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Subtitle Delay",
    "version": "1.7",
    "description": "Mini tool to delay the YouTube subtitles",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "shared\/constant.js",
                "shared\/utils.js",
                "content\/index.js"
            ],
            "css": [
                "shared\/styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "manifest_version": 3
}