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'.
O que é Netflix Private List?
Netflix Private List é uma extensão do Chrome desenvolvida por https://www.netflixprivatelist.com, e sua principal característica é "Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Netflix Private List
Baixe arquivos de extensão Netflix Private List no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Netflix Private List |
ID | feonpinmkafnfcniceplfobhhnhoenic |
URL Oficial | https://chromewebstore.google.com/detail/netflix-private-list/feonpinmkafnfcniceplfobhhnhoenic |
Descrição | Adds a second 'My List' to Netflix which is private and hidden from other users on the same account. Your 'Private List'. |
Tamanho do Arquivo | 174 KB |
Contagem de Instalações | 31 |
Versão Atual | 1.1.0 |
Última Atualização | 2020-04-15 |
Data de Publicação | 2020-04-10 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | https://www.netflixprivatelist.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.netflixprivatelist.com |
URL da Página de Ajuda | https://www.netflixprivatelist.com/#contact |
Idiomas Suportados | 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 } |