Youtube Title Blacklist

Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.

Youtube Title Blacklistとは何ですか?

Youtube Title Blacklistはhttp://creativebuilds.ioによって開発されたChromeの拡張機能で、その主な機能は「Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.」です。

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

screenshot
screenshot
screenshot

Youtube Title Blacklist拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.                    

拡張機能の基本情報

名前 Youtube Title Blacklist Youtube Title Blacklist
ID gcmgilkgahoblmnolplncmmkhmmbddfn
公式URL https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn
説明 Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
ファイルサイズ 296 KB
インストール数 423
現在のバージョン 1.0.2
最終更新日 2020-12-12
公開日 2020-12-09
評価 4.83/5 合計 6 レビュー
開発者 http://creativebuilds.io
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Title Blacklist",
    "version": "1.0.2",
    "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "24": "assets\/icons\/icon24.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_popup": "popup\/index.html",
        "default_title": "Youtube Title Blacklist - Settings"
    },
    "content_scripts": [
        {
            "js": [
                "content\/index.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/index.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "assets\/icons\/*.png"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}