Netflix Watched List

Select and hide watched movies and shows on Netflix.

Netflix Watched List란 무엇입니까?

Netflix Watched List은(는) Dariusz Kozlowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select and hide watched movies and shows on Netflix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Netflix Watched List 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}