YouTube Subtitle Delay

Mini tool to delay the YouTube subtitles

Co je YouTube Subtitle Delay?

YouTube Subtitle Delay je rozšíření Chrome vyvinuté Behnam Azimi, a jeho hlavní funkcí je „Mini tool to delay the YouTube subtitles“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Subtitle Delay

Stáhněte si soubory rozšíření YouTube Subtitle Delay ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 :)                    

Základní Informace o Rozšíření

Název YouTube Subtitle Delay YouTube Subtitle Delay
ID fegfigommgpglnlpdmgncojmkghbijkc
Oficiální URL https://chromewebstore.google.com/detail/youtube-subtitle-delay/fegfigommgpglnlpdmgncojmkghbijkc
Popis Mini tool to delay the YouTube subtitles
Velikost souboru 38.87 KB
Počet instalací 1,051
Aktuální Verze 1.7
Poslední Aktualizace 2023-12-27
Datum Vydání 2022-06-28
Hodnocení 4.00/5 Celkem 8 Hodnocení
Vývojář Behnam Azimi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/behnamazimi/youtube-subtitle-delay
URL Stránky Nápovědy https://github.com/behnamazimi/youtube-subtitle-delay/issues
Podporované Jazyky 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
}