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
官方網址 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
電子郵箱 [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"
    ]
}