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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://creativebuilds.io และคุณลักษณะหลักของมันคือ "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Title Blacklist

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}