Auto Youtube Shorts Scroll Down

Auto Youtube Shorts Scroll Down

Apa itu Auto Youtube Shorts Scroll Down?

Auto Youtube Shorts Scroll Down adalah ekstensi Chrome yang dikembangkan oleh wonkyungup, dan fitur utamanya adalah "Auto Youtube Shorts Scroll Down".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Auto Youtube Shorts Scroll Down

Unduh file ekstensi Auto Youtube Shorts Scroll Down dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Auto Youtube Shorts Scroll Down Auto Youtube Shorts Scroll Down
ID bfofdkanfmkkbngkmhmcjichambccene
URL Resmi https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene
Deskripsi Auto Youtube Shorts Scroll Down
Ukuran File 274 KB
Jumlah Instalasi 258
Versi Saat Ini 1.0.7
Terakhir Diperbarui 2023-06-25
Tanggal Publikasi 2023-02-23
Penilaian 2.67/5 Total 3 Penilaian
Pengembang wonkyungup
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}