Netflix Rewind 1 sec

Seek through video with an x amount of seconds (adjustable)

Netflix Rewind 1 secคืออะไร?

Netflix Rewind 1 sec เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Laurens และคุณลักษณะหลักของมันคือ "Seek through video with an x amount of seconds (adjustable)"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Rewind 1 sec

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

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

                        Allows you to ↺ rewind the videoplayer on netflix.com by 1 second (instead of the default 10 seconds) each time you press the [<] or [,] key.

The amount of seconds to seek can be adjusted via the 🛠️ Options page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netflix Rewind 1 sec Netflix Rewind 1 sec
ID inpbafoldolmpeiebppjbckdpnkkhlej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej
คำอธิบาย Seek through video with an x amount of seconds (adjustable)
ขนาดไฟล์ 32.6 KB
จำนวนการติดตั้ง 809
เวอร์ชันปัจจุบัน 4.0.1
อัปเดตครั้งล่าสุด 2024-01-03
วันที่เผยแพร่ 2023-03-17
คะแนน 4.50/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Laurens
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/laurens94/netflix-rewind-browser-extension
URL หน้าช่วยเหลือ https://github.com/laurens94/netflix-rewind-browser-extension/issues
ภาษาที่รองรับ en,nl,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "4.0.1",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "netflix-rewind-1-sec.js"
            ],
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{8e51a86a-e712-4386-a231-a9c3d06f3348}",
            "strict_min_version": "109.0"
        }
    }
}