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).”。
扩展截图
下载Better Netflix扩展crx文件
下载Better Netflix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        "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                     扩展基本信息
| 名称 |  | 
| 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"
    ]
} | |