Netflix Watched List

Select and hide watched movies and shows on Netflix.

Netflix Watched List क्या है?

Netflix Watched List Dariusz Kozlowski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select and hide watched movies and shows on Netflix."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        The extension allows marking the viewed movies, shows, etc. and hiding them.

Bellow the thumbnails the name of shows appeared with icons. The closed eye icon represents unseen show, open eye represents watched show. On top right corner of the page next to magnifying glass there is an eye icon that allows hide watched shows. Additionally on thumbnails i placed an informaton is it a movie (M) or series (S). You can turn off it by clicking on addon icon and checking “Type Off”.

For more information visit http://netwatchedlist.com

Please leave a review                    

एक्सटेंशन की मूल जानकारी

नाम Netflix Watched List Netflix Watched List
ID kjccopogofedahfeghliooghigidhjek
आधिकारिक URL https://chromewebstore.google.com/detail/netflix-watched-list/kjccopogofedahfeghliooghigidhjek
विवरण Select and hide watched movies and shows on Netflix.
फ़ाइल का आकार 86.64 KB
स्थापना संख्या 167
वर्तमान संस्करण 0.4.2
अंतिम अपडेट 2019-02-14
प्रकाशन तिथि 2019-02-14
रेटिंग 2.80/5 कुल 5 रेटिंग्स
डेवलपर Dariusz Kozlowski
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://netwatchedlist.com/en/home/
सहायता पृष्ठ URL http://netwatchedlist.com/en/troubleshooting/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Watched List",
    "short_name": "NetflixWatchedList",
    "author": "Dariusz Kozlowski",
    "description": "Select and hide watched movies and shows on Netflix.",
    "version": "0.4.2",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "web_accessible_resources": [
        "images\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png"
        },
        "default_title": "Netflix Watched List",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery.js",
                "watched.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.imdb.com\/",
        "https:\/\/www.omdbapi.com\/?i=",
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": true
    }
}