Netflix Subtitle Delay

Mini tool to delay the Netflix subtitles

Netflix Subtitle Delayคืออะไร?

Netflix Subtitle Delay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Behnam Azimi และคุณลักษณะหลักของมันคือ "Mini tool to delay the Netflix subtitles"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Subtitle Delay

ดาวน์โหลดไฟล์ส่วนขยาย Netflix Subtitle Delay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}