Autoskip Netflix Intro
Skip the intro's on netflix
O que é Autoskip Netflix Intro?
Autoskip Netflix Intro é uma extensão do Chrome desenvolvida por Lukas Demeyere, e sua principal característica é "Skip the intro's on netflix".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Autoskip Netflix Intro
Baixe arquivos de extensão Autoskip Netflix Intro 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
Binging your favourite show and getting tired of clicking the button to skip the intro of your Netflix episode? This extension does this automatically for you. You can easy enable/disable this feature. Skip to Next Episode --- You need to refresh your Netflix tab so the extension is loaded and can skip the intro automatically. ---
Informações Básicas da Extensão
Nome | Autoskip Netflix Intro |
ID | olljgnejdhpmoolooihgcdoannkfodji |
URL Oficial | https://chromewebstore.google.com/detail/autoskip-netflix-intro/olljgnejdhpmoolooihgcdoannkfodji |
Descrição | Skip the intro's on netflix |
Tamanho do Arquivo | 463 KB |
Contagem de Instalações | 158 |
Versão Atual | 0.0.5 |
Última Atualização | 2023-04-13 |
Data de Publicação | 2020-06-10 |
Classificação | 2.78/5 Total de 9 Avaliações |
Desenvolvedor | Lukas Demeyere |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Autoskip Netflix Intro", "version": "0.0.5", "manifest_version": 3, "description": "Skip the intro's on netflix", "icons": { "16": "icons\/netskips16.png", "48": "icons\/netskips48.png", "128": "icons\/netskips128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "Start skipping" }, "permissions": [ "storage" ] } |