YouTube Shorts Autoscroll

Automatically scrolls to the next YouTube Shorts video when one ends.

O que é YouTube Shorts Autoscroll?

YouTube Shorts Autoscroll é uma extensão do Chrome desenvolvida por panthebig, e sua principal característica é "Automatically scrolls to the next YouTube Shorts video when one ends.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Shorts Autoscroll

Baixe arquivos de extensão YouTube Shorts Autoscroll 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

                        Introducing the Shorts Auto-Scroll Extension – an open-source revolutionary tool designed for the modern content consumer. This extension seamlessly integrates with your YouTube Shorts experience, allowing you to enjoy an uninterrupted flow of bite-sized videos. No more manual scrolling or endless clicking; with the Auto-Scroll feature, your favorite Shorts are delivered to you in a continuous stream, tailored to your interests. Dive into a world of creativity, humor, and inspiration, all with the effortless ease of automatic scrolling. Download the extension today and redefine the way you explore YouTube Shorts !



Open-Source Repository:
https://github.com/panthebig/Youtube-Shorts-Autoscroller-Chrome-Extension                    

Informações Básicas da Extensão

Nome YouTube Shorts Autoscroll YouTube Shorts Autoscroll
ID dmmihimcjbhpmpkolhnelmhbknfcajmd
URL Oficial https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd
Descrição Automatically scrolls to the next YouTube Shorts video when one ends.
Tamanho do Arquivo 6.56 KB
Contagem de Instalações 399
Versão Atual 1.0
Última Atualização 2023-08-16
Data de Publicação 2023-08-16
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor panthebig
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Shorts Autoscroll",
    "description": "Automatically scrolls to the next YouTube Shorts video when one ends.",
    "version": "1.0",
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/shorts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/shorts\/*"
            ],
            "js": [
                ".\/content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": ".\/background.js"
    }
}