Recommendation Tweaker for YouTube
Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
什么是Recommendation Tweaker for YouTube?
Recommendation Tweaker for YouTube是由https://benedani.xyz开发的Chrome扩展程序,该扩展的主要功能是“Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!”。
扩展截图
下载Recommendation Tweaker for YouTube扩展crx文件
下载Recommendation Tweaker for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like!
v2.1 notes:
Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it. 扩展基本信息
| 名称 | |
| ID | jmcdldlbcgjfppbblagddgjbnjajmgec |
| 官方URL | https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec |
| 简介 | Take the trash out! Get rid of the garbage recommendations with this highly customizable extension! |
| 文件大小 | 80.81 KB |
| 安装次数 | 269 |
| 当前版本 | 2.1 |
| 更新时间 | 2023-09-26 |
| 上架时间 | 2021-04-30 |
| 评分 | 3.33/5 共9次评分 |
| 开发者 | https://benedani.xyz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://discord.gg/Zf2k7KK |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Recommendation Tweaker for YouTube",
"version": "2.1",
"description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!",
"author": "Benedani - https:\/\/benedani.xyz\/",
"permissions": [
"storage"
],
"icons": {
"32": "icons\/32.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"192": "icons\/192.png",
"384": "icons\/384.png"
},
"browser_action": {
"default_icon": {
"32": "icons\/32.png",
"64": "icons\/64.png",
"96": "icons\/96.png",
"192": "icons\/192.png",
"384": "icons\/384.png"
},
"default_title": "Recommendation Tweaker for YouTube",
"default_popup": "settings\/a.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"runtweak.js"
]
}
],
"background": {
"scripts": [
"storage.js"
]
}
} | |