Rabbit Hole for YouTube™
Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again!
什么是Rabbit Hole for YouTube™?
Rabbit Hole for YouTube™是由zedLabs开发的Chrome扩展程序,该扩展的主要功能是“Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again!”。
扩展截图
下载Rabbit Hole for YouTube™扩展crx文件
下载Rabbit Hole for YouTube™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
There is magic, but you have to be the magician. This extension allows you to take control of your time and reduce distractions while browsing YouTube™ in the following ways:
- Replace suggested content with cute bunnies!
- Hide comments (including livestream chats)
- Disable the trending and subscriptions pages
- Simplify the navigation drawer
- Disabling the wall of suggestions following a video
- Hiding banner-style ads to maintain a clean and distraction free environment
The options are also heavily customizable, so you can create exactly the experience you want.
----------------------------------
YouTube™ is a trademark of Google LLC and this extension is not endorsed by or affiliated with Google in any way. 扩展基本信息
| 名称 | |
| ID | nlddakjbmpidooplakalfoogdincflfh |
| 官方URL | https://chromewebstore.google.com/detail/rabbit-hole-for-youtube/nlddakjbmpidooplakalfoogdincflfh |
| 简介 | Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again! |
| 文件大小 | 48.4 KB |
| 安装次数 | 10,724 |
| 当前版本 | 1.2 |
| 更新时间 | 2022-02-24 |
| 上架时间 | 2019-10-30 |
| 评分 | 4.44/5 共64次评分 |
| 开发者 | zedLabs |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Rabbit Hole for YouTube\u2122",
"version": "1.2",
"description": "Remove YouTube\u2122 recommendations, comments, and more so you don't go down the rabbit hole again!",
"permissions": [
"*:\/\/www.youtube.com\/*",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Rabbit Hole for YouTube\u2122",
"default_icon": {
"16": "images\/youtuberabbit16.png",
"32": "images\/youtuberabbit32.png",
"48": "images\/youtuberabbit48.png",
"128": "images\/youtuberabbit128.png"
}
},
"icons": {
"16": "images\/youtuberabbit16.png",
"32": "images\/youtuberabbit32.png",
"48": "images\/youtuberabbit48.png",
"128": "images\/youtuberabbit128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"js\/nav.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"web_accessible_resources": [
"images\/rabbithole.png",
"images\/magicbunny.png"
],
"incognito": "not_allowed",
"manifest_version": 2
} | |