Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
什么是Focused Youtube?
Focused Youtube是由makaroni4开发的Chrome扩展程序,该扩展的主要功能是“Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube”。
扩展截图
下载Focused Youtube扩展crx文件
下载Focused Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages.
Extension requires access to Youtube website to change its outlook.
Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).
Enjoy <3
Important: the extension doesn't collect any data about Youtube usage. 扩展基本信息
| 名称 | |
| ID | nfghbmabdoakhobmimnjkamfdnpfammn |
| 官方URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
| 简介 | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
| 文件大小 | 170 KB |
| 安装次数 | 4,232 |
| 当前版本 | 1.12 |
| 更新时间 | 2024-01-27 |
| 上架时间 | 2019-01-06 |
| 评分 | 4.88/5 共72次评分 |
| 开发者 | makaroni4 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/makaroni4/focused_youtube |
| 帮助页面URL | https://github.com/makaroni4/focused_youtube/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Focused Youtube",
"description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
"version": "1.12",
"author": "Anatoli Makarevich",
"icons": {
"128": "extension_icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"assets\/extension.js"
],
"css": [
"assets\/extension.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"fonts\/Roboto-Regular.ttf",
"assets\/popup.js",
"assets\/popup.css",
"images\/search_icon.svg",
"images\/youtube_logo.png",
"images\/search_icon_dark.svg",
"images\/youtube_logo_dark.png",
"images\/extension_icon.png"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
]
}
]
} | |