Netflix TV

Turns Netflix into TV mode.

Netflix TV क्या है?

Netflix TV Genius and Sons द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turns Netflix into TV mode."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Netflix TV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}