Netflix Rewind 1 sec

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

Netflix Rewind 1 sec란 무엇입니까?

Netflix Rewind 1 sec은(는) Laurens에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Seek through video with an x amount of seconds (adjustable)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Netflix Rewind 1 sec 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
        }
    }
}