Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

Was ist Auto Youtube Shorts Scroll Down?

Auto Youtube Shorts Scroll Down ist eine Chrome-Erweiterung, die von wonkyungup entwickelt wurde, und ihr Hauptmerkmal ist "Auto Youtube Shorts Scroll Down".

Erweiterungsscreenshots

screenshot
screenshot

Auto Youtube Shorts Scroll Down-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Youtube Shorts Scroll Down-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Auto Youtube Shorts Scroll Down Auto Youtube Shorts Scroll Down
ID bfofdkanfmkkbngkmhmcjichambccene
Offizielle URL https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene
Beschreibung Auto Youtube Shorts Scroll Down
Dateigröße 274 KB
Installationsanzahl 258
Aktuelle Version 1.0.7
Letztes Update 2023-06-25
Veröffentlichungsdatum 2023-02-23
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler wonkyungup
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}