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"입니다.
확장 프로그램 스크린샷
Auto Youtube Shorts Scroll Down 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } ] } |