YouTube Blocker

Block unwanted YouTube channels.

YouTube Blockerとは何ですか?

YouTube BlockerはPrzemysław Tyczyńskiによって開発されたChromeの拡張機能で、その主な機能は「Block unwanted YouTube channels.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

YouTube Blocker拡張機能のCRXファイルをダウンロード

YouTube Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

拡張機能の基本情報

名前 YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
公式URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
説明 Block unwanted YouTube channels.
ファイルサイズ 96.3 KB
インストール数 1,036
現在のバージョン 1.0.0
最終更新日 2020-04-21
公開日 2020-04-21
評価 5.00/5 合計 5 レビュー
開発者 Przemysław Tyczyński
支払い方法 free
拡張機能のウェブサイト https://youtube-blocker.tyczynski.dev
ヘルプページのURL https://youtube-blocker.tyczynski.dev
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}