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文件

下載Netflix Private List擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}