Recommendation filter for YouTube
Customise which recommendations are shown on YouTube.
Recommendation filter for YouTubeとは何ですか?
Recommendation filter for YouTubeはLeolimeによって開発されたChromeの拡張機能で、その主な機能は「Customise which recommendations are shown on YouTube.」です。
拡張機能のスクリーンショット
Recommendation filter for YouTube拡張機能のCRXファイルをダウンロード
Recommendation filter for YouTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
YouTube can be a powerful tool for learning but sometimes the entertaining recommendations get in the way...
✔️ Why use Recommendation filter for YouTube?
• Are you easily distracted? Use YouTube to it's full potential by hiding distracting recommendations when you are trying to be productive.
• Filter recommendations to only show what you are currently interested in.
• Avoid tempting click bait in the recommendation section by filtering out a topic or YouTuber. 拡張機能の基本情報
| 名前 | |
| ID | eoelfnihmeicibagdaalkdhmmdohcgml |
| 公式URL | https://chromewebstore.google.com/detail/recommendation-filter-for/eoelfnihmeicibagdaalkdhmmdohcgml |
| 説明 | Customise which recommendations are shown on YouTube. |
| ファイルサイズ | 46.61 KB |
| インストール数 | 408 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2020-08-19 |
| 公開日 | 2020-08-19 |
| 評価 | 3.83/5 合計 6 レビュー |
| 開発者 | Leolime |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Recommendation filter for YouTube",
"description": "Customise which recommendations are shown on YouTube.",
"version": "1.0.0",
"permissions": [
"*:\/\/www.youtube.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"dist\/content\/bundle.js"
],
"css": [
"style\/content.css"
],
"all_frames": true,
"run_at": "document_end"
}
],
"background": {
"scripts": [
"dist\/background\/bundle.js"
]
},
"browser_action": {
"default_popup": "layout\/popup.html",
"default_icon": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
}
},
"options_ui": {
"page": "layout\/popup.html",
"open_in_tab": false
},
"icons": {
"48": "images\/ic_48.png",
"128": "images\/ic_128.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"images\/*.svg",
"style\/*.css"
],
"minimum_chrome_version": "5"
} | |