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
公式URL 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
Eメール [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"
            ]
        }
    ]
}