Netflix 1080p

Forces 1080p and 5.1 playback for Netflix.

Τι είναι το Netflix 1080p;

Το Netflix 1080p είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον truedread, και η κύρια λειτουργία του είναι "Forces 1080p and 5.1 playback for Netflix.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Netflix 1080p

Λήψη αρχείων επέκτασης Netflix 1080p σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A way to finally watch Netflix in the highest quality possible. This extension forces 1080p FHD playback, as well as the option to force 5.1 AAC playback.

Normally, Netflix only plays back a maximum of 720p and AAC2.0. However, with this extension, those restrictions can finally be removed. 

***

Out of the box, Netflix-1080p just forces 1080p AVCHi streams to be included in the streams for playback. However, there are a few options you may tweak in the extension's options menu (all left unchecked by default):

- Use 5.1 audio when available: Netflix normally plays back AAC2.0 in 64kbps and 96kbps. However, by checking this option, you override those streams for 128kbps AAC5.1, which can take advantage of surround sound setups!

- Automatically select best bitrate available: Checking this option allows you to always playback the highest quality streams, no matter how fast Netflix thinks your connection is.

- Use VP9 instead of H.264: For older computers, decoding VP9 in software can be faster and more efficient than decoding H.264 in software. Check this option if you notice slowdown or dropped frames with 1080p AVC playback.

***

This extension is free and will remain free. It is licensed under the MIT license, and is completely open source.

I welcome any and all contributions! GitHub is linked below.

***

GitHub + more in-depth explanation:
https://github.com/truedread/netflix-1080p                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Netflix 1080p Netflix 1080p
ID cankofcoohmbhfpcemhmaaeennfbnmgp
Επίσημο URL https://chromewebstore.google.com/detail/netflix-1080p/cankofcoohmbhfpcemhmaaeennfbnmgp
Περιγραφή Forces 1080p and 5.1 playback for Netflix.
Μέγεθος Αρχείου 877 KB
Αριθμός Εγκαταστάσεων 143,076
Τρέχουσα Έκδοση 1.22
Τελευταία Ενημέρωση 2021-12-20
Ημερομηνία Δημοσίευσης 2021-06-27
Αξιολόγηση 4.12/5 Συνολικά 715 Αξιολογήσεις
Προγραμματιστής truedread
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/truedread/netflix-1080p
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/truedread/netflix-1080p
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix 1080p",
    "description": "Forces 1080p and 5.1 playback for Netflix.",
    "version": "1.22",
    "author": "truedread",
    "browser_action": {
        "default_icon": "img\/icon128.png"
    },
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/assets.nflxext.com\/*\/ffe\/player\/html\/*",
                "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*",
                "*:\/\/netflix.com\/*",
                "*:\/\/www.netflix.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        "cadmium-playercore-6.0033.414.911-1080p.js",
        "netflix_max_bitrate.js"
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/assets.nflxext.com\/*\/ffe\/player\/html\/*",
        "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*",
        "*:\/\/netflix.com\/*",
        "*:\/\/www.netflix.com\/*"
    ]
}