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 هو إضافة Chrome تم تطويرها بواسطة https://www.netflixprivatelist.com، والميزة الرئيسية لها هي "Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Netflix Private List
قم بتنزيل ملفات الامتداد Netflix Private List بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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 } |