Keyword Blocker

Web Extension to block unwanted videos and channels

Keyword Blocker란 무엇입니까?

Keyword Blocker은(는) Rik Harink에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Web Extension to block unwanted videos and channels"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Keyword Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension can block YouTube videos or channels from view based on keywords you can specify.
It features a very basic password protection and the block message is user-customizable.

Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension.

The sourcecode is available on github at https://github.com/Meidor/keywordblocker                    

확장 프로그램 기본 정보

이름 Keyword Blocker Keyword Blocker
ID pbgacppomjfpheddhifkdkklddnolnpg
공식 URL https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg
설명 Web Extension to block unwanted videos and channels
파일 크기 84.9 KB
설치 횟수 9,000
현재 버전 2.2.1
최근 업데이트 2020-02-04
출시 날짜 2020-02-04
평점 3.25/5 총 99 개의 평점
개발자 Rik Harink
결제 유형 free
확장 프로그램 웹 사이트 https://www.keywordblocker.nl
도움말 페이지 URL https://github.com/Meidor/keywordblocker/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Web Extension to block unwanted videos and channels",
    "version": "2.2.1",
    "name": "Keyword Blocker",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Keyword Blocker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/content_script.css"
            ],
            "js": [
                "content_script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "*:\/\/www.youtube.com\/*"
    ]
}