Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down là gì?
Auto Youtube Shorts Scroll Down là một tiện ích mở rộng Chrome được phát triển bởi wonkyungup, và tính năng chính của nó là "Auto Youtube Shorts Scroll Down".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Auto Youtube Shorts Scroll Down
Tải xuống các tệp mở rộng Auto Youtube Shorts Scroll Down dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Auto Youtube Shorts Scroll Down |
ID | bfofdkanfmkkbngkmhmcjichambccene |
URL Chính Thức | https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene |
Mô tả | Auto Youtube Shorts Scroll Down |
Kích Thước Tệp | 274 KB |
Số Lần Cài Đặt | 258 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2023-06-25 |
Ngày Phát Hành | 2023-02-23 |
Đánh Giá | 2.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | wonkyungup |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |