YouTube Shorts Autoscroll

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

YouTube Shorts Autoscroll란 무엇입니까?

YouTube Shorts Autoscroll은(는) panthebig에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically scrolls to the next YouTube Shorts video when one ends."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Shorts Autoscroll 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 YouTube Shorts Autoscroll YouTube Shorts Autoscroll
ID dmmihimcjbhpmpkolhnelmhbknfcajmd
공식 URL https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd
설명 Automatically scrolls to the next YouTube Shorts video when one ends.
파일 크기 6.56 KB
설치 횟수 399
현재 버전 1.0
최근 업데이트 2023-08-16
출시 날짜 2023-08-16
평점 3.50/5 총 2 개의 평점
개발자 panthebig
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}