Skipfast intro, recap, next and more

Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.

O que é Skipfast intro, recap, next and more?

Skipfast intro, recap, next and more é uma extensão do Chrome desenvolvida por Michaël Faurel, e sua principal característica é "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Skipfast intro, recap, next and more

Baixe arquivos de extensão Skipfast intro, recap, next and more 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

                        Automatically skip Intro, Recaps and Next episode for Netflix, AppleTV, Prime Video and Disney plus prompts.

IMPORTANT: you need to refresh the Netflix, AppleTV, Prime Video or Disney plus page only once after installing the extension. It's not dependent on language.

You can check the code here : https://github.com/mfaurel/skipfast
You can open an issue or send a pull request if you find any bug.

If you want to buy me a coffee, here's my paypal : https://paypal.me/MichaelFaurel                    

Informações Básicas da Extensão

Nome Skipfast intro, recap, next and more Skipfast intro, recap, next and more
ID gjaffkjplmcnjonnmoagianaeacjfipj
URL Oficial https://chromewebstore.google.com/detail/skipfast-intro-recap-next/gjaffkjplmcnjonnmoagianaeacjfipj
Descrição Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.
Tamanho do Arquivo 351 KB
Contagem de Instalações 121
Versão Atual 2.0.0
Última Atualização 2023-12-04
Data de Publicação 2022-03-13
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Michaël Faurel
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mfaurel/skipfast
URL da Página de Ajuda https://github.com/mfaurel/skipfast/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skipfast intro, recap, next and more",
    "description": "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.",
    "author": "Micha\u00ebl Faurel",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "128": "src\/assets\/icon128x128_2.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "src\/popup.html"
    }
}