Netflix Private List

Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.

Netflix Private List란 무엇입니까?

Netflix Private List은(는) https://www.netflixprivatelist.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.

1. Select movie by hovering over it with your mouse's cursor.
2. Press the "~" key (at the top left corner of the keyboard) to add the movie to the private list.
3. A notification (at the bottom left corner of the screen) will show the success of the addition.                    

확장 프로그램 기본 정보

이름 Netflix Private List Netflix Private List
ID feonpinmkafnfcniceplfobhhnhoenic
공식 URL https://chromewebstore.google.com/detail/netflix-private-list/feonpinmkafnfcniceplfobhhnhoenic
설명 Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.
파일 크기 174 KB
설치 횟수 31
현재 버전 1.1.0
최근 업데이트 2020-04-15
출시 날짜 2020-04-10
평점 5.00/5 총 4 개의 평점
개발자 https://www.netflixprivatelist.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.netflixprivatelist.com
도움말 페이지 URL https://www.netflixprivatelist.com/#contact
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Private List",
    "version": "1.1.0",
    "description": "Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "options_page": "",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.com\/*\/*\/*",
                "https:\/\/www.netflix.com\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content-execute.js",
                "exlist-slider\/script.js"
            ],
            "css": [
                "exlist-slider\/slider-style.css",
                "exlist-slider\/animate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "author": "Emmanuel Amador",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "exlist-slider\/images\/left-arrow.png",
        "exlist-slider\/images\/right-arrow.png",
        "exlist-slider\/images\/delete-icon-512px.png",
        "exlist-slider\/images\/lock-solid.svg"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/npl16.png",
            "32": "images\/npl32.png",
            "48": "images\/npl48.png",
            "128": "images\/npl128.png"
        }
    },
    "icons": {
        "16": "images\/npl16.png",
        "32": "images\/npl32.png",
        "48": "images\/npl48.png",
        "128": "images\/npl128.png"
    },
    "manifest_version": 2
}