YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
YouTube Shorts Remover란 무엇입니까?
YouTube Shorts Remover은(는) http://zalwicker.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch."입니다.
확장 프로그램 스크린샷
YouTube Shorts Remover 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
확장 프로그램 기본 정보
이름 | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
공식 URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
설명 | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
파일 크기 | 20.47 KB |
설치 횟수 | 865 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-06-11 |
출시 날짜 | 2022-12-06 |
평점 | 3.73/5 총 15 개의 평점 |
개발자 | http://zalwicker.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.zalwicker.dev/projects |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |