Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

Τι είναι το Auto Youtube Shorts Scroll Down;

Το Auto Youtube Shorts Scroll Down είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wonkyungup, και η κύρια λειτουργία του είναι "Auto Youtube Shorts Scroll Down".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Auto Youtube Shorts Scroll Down

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
            ]
        }
    ]
}