ShortsBlocker - Remove Shorts from YouTube

Remove Shorts videos from Youtube

ShortsBlocker - Remove Shorts from YouTube란 무엇입니까?

ShortsBlocker - Remove Shorts from YouTube은(는) SageMod에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove Shorts videos from Youtube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ShortsBlocker - Remove Shorts from YouTube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Remove All Shorts Videos from YouTube.

This extension removes all the shorts videos from the YouTube homepage, tabs, search, explore and also subscriptions.

# Update 1.5.0 - August 19, 2023
- Optimized the algorithm that detects and removes YouTube Shorts from feeds to work faster. This should result in Shorts being removed more quickly after being identified.
- Refactored the core code to improve overall performance and reduce memory usage.

Request new features or found a bug? Tweet at https://twitter.com/ravensmove

Buy Me A Coffee: https://www.buymeacoffee.com/ravensmove

Love the extension? Give us a rating!

FAQ:
1. What information do you collect?
We do not collect any personal data.

Stay in touch:
Follow us on Twitter: https://twitter.com/ravensmove                    

확장 프로그램 기본 정보

이름 ShortsBlocker - Remove Shorts from YouTube ShortsBlocker - Remove Shorts from YouTube
ID oahiolknhkbpcolgnpljehalnhblolkm
공식 URL https://chromewebstore.google.com/detail/shortsblocker-remove-shor/oahiolknhkbpcolgnpljehalnhblolkm
설명 Remove Shorts videos from Youtube
파일 크기 413 KB
설치 횟수 34,422
현재 버전 1.5.0
최근 업데이트 2023-08-21
출시 날짜 2022-08-16
평점 4.60/5 총 176 개의 평점
개발자 SageMod
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ravensmove.com/shortsblocker/
도움말 페이지 URL https://twitter.com/RavensMove
개인정보 보호 정책 페이지 URL https://ravensmove.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShortsBlocker - Remove Shorts from YouTube",
    "description": "Remove Shorts videos from Youtube",
    "version": "1.5.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/assets\/index.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_title": "ShortsBlocker - Remove Shorts from YouTube",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    }
}