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文件

下載YouTube Shorts Autoscroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}