Netflix Watched List

Select and hide watched movies and shows on Netflix.

Qu'est-ce que Netflix Watched List ?

Netflix Watched List est une extension Chrome développée par Dariusz Kozlowski, et sa fonction principale est "Select and hide watched movies and shows on Netflix.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Netflix Watched List

Téléchargez les fichiers d'extension Netflix Watched List au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Netflix Watched List Netflix Watched List
ID kjccopogofedahfeghliooghigidhjek
URL Officiel https://chromewebstore.google.com/detail/netflix-watched-list/kjccopogofedahfeghliooghigidhjek
Description Select and hide watched movies and shows on Netflix.
Taille du Fichier 86.64 KB
Nombre d'Installations 167
Version Actuelle 0.4.2
Dernière Mise à Jour 2019-02-14
Date de Publication 2019-02-14
Évaluation 2.80/5 Total 5 Évaluations
Développeur Dariusz Kozlowski
Type de Paiement free
Site Web de l'Extension http://netwatchedlist.com/en/home/
URL de la Page d'Aide http://netwatchedlist.com/en/troubleshooting/
Langues Prises en Charge 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
    }
}