Netflix rewind x seconds

Netflix rewind or skip a parameter seconds

Netflix rewind x seconds란 무엇입니까?

Netflix rewind x seconds은(는) wahid-moh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Netflix rewind or skip a parameter seconds"입니다.

확장 프로그램 스크린샷

screenshot

Netflix rewind x seconds 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Rewind / skip time on netflix movies, time can be paramtered.

Use key keyboard <  to rewind with x second
Use key keyboard >  to skip with x second
Use > or . to skip with 5 seconds (does get stuck sometimes)                    

확장 프로그램 기본 정보

이름 Netflix rewind x seconds Netflix rewind x seconds
ID jmklaacdggogjblaiofpikjjhblhicop
공식 URL https://chromewebstore.google.com/detail/netflix-rewind-x-seconds/jmklaacdggogjblaiofpikjjhblhicop
설명 Netflix rewind or skip a parameter seconds
파일 크기 8.89 KB
설치 횟수 352
현재 버전 1.0
최근 업데이트 2023-01-11
출시 날짜 2023-01-10
평점 2.75/5 총 4 개의 평점
개발자 wahid-moh
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/wahid-moh/rewind-netflix
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix rewind x seconds",
    "description": "Netflix rewind or skip a parameter seconds",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "netflix-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}