YouFocus - YouTube Filter
A filter for YouTube videos.
什麼是YouFocus - YouTube Filter?
YouFocus - YouTube Filter是由Practimake開發的Chrome擴展程式,該擴展的主要功能是“A filter for YouTube videos.”。
擴展截圖
下載YouFocus - YouTube Filter擴展crx文件
下載YouFocus - YouTube Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.
擴展基本資訊
名稱 | YouFocus - YouTube Filter |
ID | nlokjknlncdcjohkpclkbeofefnmjaad |
官方網址 | https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad |
簡介 | A filter for YouTube videos. |
檔案大小 | 729 KB |
安裝次數 | 230 |
目前版本 | 1.0.1 |
更新時間 | 2020-07-17 |
上架時間 | 2020-07-15 |
評分 | 4.80/5 共 5 次評分 |
開發者 | Practimake |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouFocus - YouTube Filter", "description": "A filter for YouTube videos.", "version": "1.0.1", "icons": { "128": "funnelV2.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "utils.js", "content.js" ] } ], "background": { "scripts": [ "utils.js", "background.js" ] }, "page_action": { "default_icon": "funnelV2.png" }, "options_page": "options.html", "permissions": [ "storage", "declarativeContent" ] } |