Netflix TV

Turns Netflix into TV mode.

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

Το Netflix TV είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Genius and Sons, και η κύρια λειτουργία του είναι "Turns Netflix into TV mode.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Turning Netflix into TV mode is easy! All you have to do is pick series or movies, the genre you'd like and press play! The extension will automagically start playing personalized content for you that matches your search. If you would like to have more granular controls you can create a TV show channel. You get to add all your favorite TV shows, and the extension will start playing a mixed playlist of episodes.

Stop wasting time deciding what to watch, and spend more time watching

Guide:
1. Visit netflix.com
2. Open the extension from top right corner
3. Create your own customized channel

Credits:
This extension is not affiliated with Netflix Inc. Netflix is a trademark of Netflix, Inc.
Photo credits: Roberto Nickson

Support email: [email protected]                    

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

Όνομα Netflix TV Netflix TV
ID odmgfcepaajjipjjjhijpkhacagdjddo
Επίσημο URL https://chrome.google.com/webstore/detail/netflix-tv/odmgfcepaajjipjjjhijpkhacagdjddo
Περιγραφή Turns Netflix into TV mode.
Μέγεθος Αρχείου 1.36 MB
Αριθμός Εγκαταστάσεων 970
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2020-04-03
Ημερομηνία Δημοσίευσης 2020-04-03
Αξιολόγηση 1.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Genius and Sons
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix TV",
    "description": "Turns Netflix into TV mode.",
    "version": "1.0.1",
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png"
    },
    "background": {
        "persistent": false,
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ],
        "scripts": [
            "js\/common.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "js\/common.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.netflix.com\/*",
        "*:\/\/*.thisisanalphanumeric.xyz\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Netflix TV Settings"
    }
}