Youtube Video Blocker
Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
什麼是Youtube Video Blocker?
Youtube Video Blocker是由bmoses1124開發的Chrome擴展程式,該擴展的主要功能是“Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.”。
擴展截圖
下載Youtube Video Blocker擴展crx文件
下載Youtube Video Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.
擴展基本資訊
名稱 | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
官方網址 | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
簡介 | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
檔案大小 | 6.02 KB |
安裝次數 | 555 |
目前版本 | 0.1 |
更新時間 | 2020-12-23 |
上架時間 | 2020-12-23 |
評分 | 1.00/5 共 3 次評分 |
開發者 | bmoses1124 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Blocker", "version": "0.1", "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "block_youtube_vids.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "manifest_version": 2 } |