Netflix Watched List

Select and hide watched movies and shows on Netflix.

O que é Netflix Watched List?

Netflix Watched List é uma extensão do Chrome desenvolvida por Dariusz Kozlowski, e sua principal característica é "Select and hide watched movies and shows on Netflix.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix Watched List

Baixe arquivos de extensão Netflix Watched List no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Netflix Watched List Netflix Watched List
ID kjccopogofedahfeghliooghigidhjek
URL Oficial https://chromewebstore.google.com/detail/netflix-watched-list/kjccopogofedahfeghliooghigidhjek
Descrição Select and hide watched movies and shows on Netflix.
Tamanho do Arquivo 86.64 KB
Contagem de Instalações 167
Versão Atual 0.4.2
Última Atualização 2019-02-14
Data de Publicação 2019-02-14
Classificação 2.80/5 Total de 5 Avaliações
Desenvolvedor Dariusz Kozlowski
Tipo de Pagamento free
Site da Extensão http://netwatchedlist.com/en/home/
URL da Página de Ajuda http://netwatchedlist.com/en/troubleshooting/
Idiomas Suportados 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
    }
}