Smart YouTube Blocker (Beta)

Block channels and keywords on YouTube and limit their allowed watch time

Smart YouTube Blocker (Beta)란 무엇입니까?

Smart YouTube Blocker (Beta)은(는) Smart Blocker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block channels and keywords on YouTube and limit their allowed watch time"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Smart YouTube Blocker (Beta) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        === Features ===
✓ Custom schedule exactly when certain lists of channels/title keywords should be blocked and their videos not show/be able to be watched on YouTube™ (e.g. permanently 24/7, only on weekdays, only during work hours, etc)
✓ Limit the number of videos you're able to watch from certain channels/keywords per day/per week
✓ Password protection (so you can hide you password or add it to a lockbox on lockbox.pluckeye.net so you don’t give in/change settings in a moment of weakness)
✓ Right click on any video to block the channel
✓ Easily add keywords/channels through clicking on the extension icon in the icon toolbar

=== Bonus Features ===
✓ Option to automatically redirect the homepage of YouTube.com to something more productive (i.e. a productive playlist, search term, etc)
✓ Option to remove endscreen cards and recommended videos

Please send any suggestions or issues to our support email.
Currently in (advanced) Beta.

(Trademark Disclaimer: Please note that this extension is not affiliated with, sponsored by, or endorsed by YouTube or Alphabet Inc. Any trademarks used in connection with YouTube and Alphabet are the property of their respective owners.)                    

확장 프로그램 기본 정보

이름 Smart YouTube Blocker (Beta) Smart YouTube Blocker (Beta)
ID dljpdencpenokgdjiemdejjiohjoopaj
공식 URL https://chromewebstore.google.com/detail/smart-youtube-blocker-bet/dljpdencpenokgdjiemdejjiohjoopaj
설명 Block channels and keywords on YouTube and limit their allowed watch time
파일 크기 218 KB
설치 횟수 303
현재 버전 0.1.29
최근 업데이트 2023-11-25
출시 날짜 2022-05-04
평점 3.70/5 총 10 개의 평점
개발자 Smart Blocker
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Smart YouTube Blocker (Beta)",
    "version": "0.1.29",
    "description": "Block channels and keywords on YouTube and limit their allowed watch time",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "options_page": "ui\/options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/common.js",
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "ui\/popup.html"
    }
}