Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

什麼是Auto Youtube Shorts Scroll Down?

Auto Youtube Shorts Scroll Down是由wonkyungup開發的Chrome擴展程式,該擴展的主要功能是“Auto Youtube Shorts Scroll Down”。

擴展截圖

screenshot
screenshot

下載Auto Youtube Shorts Scroll Down擴展crx文件

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

擴展使用說明

                        A switch is created at the top inside the video.
If there is no switch, it will refresh the page.

It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late.
The code has been posted on Github.

If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond.

Version 1.0.7
  - ADD: dislike show
  - FIX: scroll Event check, to many event                    

擴展基本資訊

名稱 Auto Youtube Shorts Scroll Down Auto Youtube Shorts Scroll Down
ID bfofdkanfmkkbngkmhmcjichambccene
官方網址 https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene
簡介 Auto Youtube Shorts Scroll Down
檔案大小 274 KB
安裝次數 258
目前版本 1.0.7
更新時間 2023-06-25
上架時間 2023-02-23
評分 2.67/5 共 3 次評分
開發者 wonkyungup
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Youtube Shorts Scroll Down",
    "manifest_version": 3,
    "version": "1.0.7",
    "permissions": [
        "tabs"
    ],
    "description": "Auto Youtube Shorts Scroll Down",
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "48": "48x48.png"
    },
    "action": {
        "default_icon": {
            "16": "16x16.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/shorts\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}