Keyword Blocker
Web Extension to block unwanted videos and channels
Keyword Blockerคืออะไร?
Keyword Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rik Harink และคุณลักษณะหลักของมันคือ "Web Extension to block unwanted videos and channels"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyword Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Keyword Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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\/*" ] } |