Netflix Subtitle Delay

Mini tool to delay the Netflix subtitles

Netflix Subtitle Delay란 무엇입니까?

Netflix Subtitle Delay은(는) Behnam Azimi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mini tool to delay the Netflix subtitles"입니다.

확장 프로그램 스크린샷

screenshot

Netflix Subtitle Delay 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Mini tool to delay subtitles on the Netflix official website.

As you may know, Netflix doesn't have this functionality by default, and being able to delay subtitle streaming can be of great help when you're trying to learn a new language.

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 Netflix official website and I hope they add the subtitle delay options soon and make this extension useless :)

v1.11                    

확장 프로그램 기본 정보

이름 Netflix Subtitle Delay Netflix Subtitle Delay
ID jlfdecbacdnabiopdhgbjmgggabhjoce
공식 URL https://chromewebstore.google.com/detail/netflix-subtitle-delay/jlfdecbacdnabiopdhgbjmgggabhjoce
설명 Mini tool to delay the Netflix subtitles
파일 크기 32.97 KB
설치 횟수 534
현재 버전 1.11
최근 업데이트 2022-09-15
출시 날짜 2022-02-15
평점 4.75/5 총 4 개의 평점
개발자 Behnam Azimi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/behnamazimi/netflix-subtitle-delay
도움말 페이지 URL https://github.com/behnamazimi/netflix-subtitle-delay/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Subtitle Delay",
    "version": "1.11",
    "description": "Mini tool to delay the Netflix subtitles",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/netflix.com\/*",
        "https:\/\/www.netflix.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:\/\/netflix.com\/*",
                "https:\/\/www.netflix.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
}