Netflix Rewind 1 sec

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

Netflix Rewind 1 sec là gì?

Netflix Rewind 1 sec là một tiện ích mở rộng Chrome được phát triển bởi Laurens, và tính năng chính của nó là "Seek through video with an x amount of seconds (adjustable)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netflix Rewind 1 sec

Tải xuống các tệp mở rộng Netflix Rewind 1 sec dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netflix Rewind 1 sec Netflix Rewind 1 sec
ID inpbafoldolmpeiebppjbckdpnkkhlej
URL Chính Thức https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej
Mô tả Seek through video with an x amount of seconds (adjustable)
Kích Thước Tệp 32.6 KB
Số Lần Cài Đặt 809
Phiên Bản Hiện Tại 4.0.1
Cập Nhật Lần Cuối 2024-01-03
Ngày Phát Hành 2023-03-17
Đánh Giá 4.50/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Laurens
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/laurens94/netflix-rewind-browser-extension
URL Trang Trợ Giúp https://github.com/laurens94/netflix-rewind-browser-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}