Better YouTube Subscriptions

Hide YouTube Shorts and videos you have already watched from your subscriptions feed !

Better YouTube Subscriptions란 무엇입니까?

Better YouTube Subscriptions은(는) OptiSearch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Better YouTube Subscriptions 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed.
It can also hide the videos that you have already watched.

Of course, you can make them appear again with a simple click of a button.

In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !                    

확장 프로그램 기본 정보

이름 Better YouTube Subscriptions Better YouTube Subscriptions
ID hbopiiffeioghjoeakkknpcealnlomod
공식 URL https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod
설명 Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
파일 크기 28 KB
설치 횟수 37
현재 버전 1.0
최근 업데이트 2023-02-26
출시 날짜 2022-09-29
평점 1.00/5 총 1 개의 평점
개발자 OptiSearch
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://dj0ulo.github.io/OptiSearch/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better YouTube Subscriptions",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !",
    "icons": {
        "128": "images\/icon_128.png",
        "1024": "images\/icon_1024.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/pop-up\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/style.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/settings.js",
                "src\/utils.js",
                "src\/content_script.js"
            ]
        }
    ]
}