Netflix Helper

This Netflix extension to control volume with the mouse wheel, and auto skip intro.

Netflix Helper란 무엇입니까?

Netflix Helper은(는) Sarequl Basar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Netflix extension to control volume with the mouse wheel, and auto skip intro."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Netflix Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Netflix extension controls volume with the mouse wheel, and auto skip intros.
I originally created this for myself, but my friends suggested I make it publicly available since they found it useful - so here it is, free for you! 🙂

Features:	
1. On / Off Extension with a button
2. Control volume with mouse.
3. Auto Skip Intro.
4. Hide Sections that you don't like
5. Cool Extension UI

Coming soon:
1. Assign mouse button for different tasks.


Changelog:

#2.1.0
1. Fixed (auto skip intro, auto skip recap, auto skip outro).
2. Auto Next Episode.
3. manifest version 3
4. Feel free to create an issue about what shortcut you need.

#2.0.2
1. Added Keyboard Shortcut. (Press N for Next Episode)

#2.0
*Added UI for the extension.
*On / Off extension functionality with a button.
*Hide Sections that you don't like.
*Reload Button (after any changes).

#1.0
*Control volume with mouse.
*Auto Skip Intro

##You can request for more features##
https://ko-fi.com/sarequl/                    

확장 프로그램 기본 정보

이름 Netflix Helper Netflix Helper
ID mlfdbphlfojgfeepjojcalginhedfpnk
공식 URL https://chromewebstore.google.com/detail/netflix-helper/mlfdbphlfojgfeepjojcalginhedfpnk
설명 This Netflix extension to control volume with the mouse wheel, and auto skip intro.
파일 크기 59.66 KB
설치 횟수 220
현재 버전 2.1.0
최근 업데이트 2022-10-06
출시 날짜 2021-02-18
평점 5.00/5 총 16 개의 평점
개발자 Sarequl Basar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ko-fi.com/sarequl/
도움말 페이지 URL https://ko-fi.com/sarequl/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Helper",
    "version": "2.1.0",
    "manifest_version": 3,
    "description": "This Netflix extension to control volume with the mouse wheel, and auto skip intro.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/netflix-helper\/mlfdbphlfojgfeepjojcalginhedfpnk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Netflix Helper UI",
        "default_popup": "src\/popup\/public\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "src\/backend\/netflixHelper.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.netflix.com\/"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}