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 là gì?
Netflix Private List là một tiện ích mở rộng Chrome được phát triển bởi https://www.netflixprivatelist.com, và tính năng chính của nó là "Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Netflix Private List
Tải xuống các tệp mở rộng Netflix Private List dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Netflix Private List |
ID | feonpinmkafnfcniceplfobhhnhoenic |
URL Chính Thức | https://chromewebstore.google.com/detail/netflix-private-list/feonpinmkafnfcniceplfobhhnhoenic |
Mô tả | Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'. |
Kích Thước Tệp | 174 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2020-04-15 |
Ngày Phát Hành | 2020-04-10 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://www.netflixprivatelist.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.netflixprivatelist.com |
URL Trang Trợ Giúp | https://www.netflixprivatelist.com/#contact |
Ngôn Ngữ Được Hỗ Trợ | 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 } |