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