Better Netflix

Adds various features to Netflix like support for ultrawide displays (21:9 aspect ratio).

Better Netflix란 무엇입니까?

Better Netflix은(는) Konstantin Müller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds various features to Netflix like support for ultrawide displays (21:9 aspect ratio)."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        "Better Netflix" adds the following features to Netflix:

- Ultrawide display support (21:9 aspect ratio) [To 21:9: '.', to 16:9: ',']
- Zoom in and out of the video [Zoom in: '+', zoom out: '-']
- Show the elapsed time of the video
- Disable mouse movement [Disable: 'd', enable: 'e' or 'Esc']
- Statistics [Toggle: 'q']
- Use the mouse wheel to change the volume
- Button to pick a random video of the Netflix list
- Buttons to search for movies or series on IMDb
- Toggle english subtitles [Toggle: 'v'] (Currently only for english or german Netflix. The language for your Netflix profile can be configured at the "Manage Profiles"-page)
- Button to enable picture in picture mode
- Automatically skip intros

"Better Netflix" provides the keyboard shortcuts specified in [ ]-brackets of the list above.
Use the h button on a video page to show a help message with available keyboard shortcuts.



"Better Netflix" does not collect your data and is completely free and open source. Source code: https://gitlab.com/konstantin-mueller/better-netflix

If you would like to support the development of this extension: https://paypal.me/betternetflix                    

확장 프로그램 기본 정보

이름 Better Netflix Better Netflix
ID lgaajejckkabgbineealeijjlffiigah
공식 URL https://chromewebstore.google.com/detail/better-netflix/lgaajejckkabgbineealeijjlffiigah
설명 Adds various features to Netflix like support for ultrawide displays (21:9 aspect ratio).
파일 크기 22.82 KB
설치 횟수 8,403
현재 버전 1.8.6
최근 업데이트 2022-12-29
출시 날짜 2019-09-09
평점 4.09/5 총 47 개의 평점
개발자 Konstantin Müller
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Better Netflix",
    "version": "1.8.6",
    "author": "Konstantin M\u00fcller",
    "description": "Adds various features to Netflix like support for ultrawide displays (21:9 aspect ratio).",
    "icons": {
        "48": "resources\/icon.png",
        "96": "resources\/icon.png",
        "128": "resources\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ]
}