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 |
官方URL | 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" ] } |