Netflix Radio

Add television channels to Netflix

Τι είναι το Netflix Radio;

Το Netflix Radio είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον goatmobile, και η κύρια λειτουργία του είναι "Add television channels to Netflix".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        These days, the number of shows and movies available on streaming services is astronomical! Deciding on a specific one is a monumental task, leading to hours wasted scrolling endlessly through the myriad of options.

Netflix Radio brings a solution: simply choose your channel of choice and before you know it you will be put in the middle of a show or movie. If you don't like it, hit the channel up or down buttons to navigate to the next or previous channel, respectively.

Netflix Radio simplifies the watching process by disabling the ability to seek or pause, simulating the experience of a real network TV channel (with no commercials!).

Watch with friends! All Netflix Radio installations follow the same programming schedule, so each of your channels play the same thing as everyone else's.

Like what you're watching and want some more control? Delete 'radio_channel=...' from the URL and refresh, then you will find yourself on the typical Netflix UI.

Changelog:
1.3 - a Netflix update broke everything, make it work again
1.2.1 - fix bug where channels were missing
1.2 - added more channels, made show distribution more fair, fixed channel scrolling on browse page
1.1.1 - add ability to dismiss guide by clicking somewhere else
1.1 - add guide channel
1.0.2 - fix bug where space bar would still pause                    

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

Όνομα Netflix Radio Netflix Radio
ID gbhbfbfeplnegfdpjopediaglchcahaa
Επίσημο URL https://chrome.google.com/webstore/detail/netflix-radio/gbhbfbfeplnegfdpjopediaglchcahaa
Περιγραφή Add television channels to Netflix
Μέγεθος Αρχείου 670 KB
Αριθμός Εγκαταστάσεων 28
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2021-01-22
Ημερομηνία Δημοσίευσης 2020-10-26
Αξιολόγηση 2.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής goatmobile
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Radio",
    "short_name": "Netflix Radio",
    "description": "Add television channels to Netflix",
    "version": "1.3",
    "author": "goatmobile",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/netflix.com\/*",
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "library.js",
                "channels.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.jpg"
    ],
    "permissions": [
        "activeTab",
        "https:\/\/netflix.com\/*"
    ]
}