YouTube Recommendations Filter

Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed

YouTube Recommendations Filterとは何ですか?

YouTube Recommendations FilterはGary Chiuによって開発されたChromeの拡張機能で、その主な機能は「Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed」です。

拡張機能のスクリーンショット

screenshot
screenshot

YouTube Recommendations Filter拡張機能のCRXファイルをダウンロード

YouTube Recommendations Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Tired of always seeing videos you've already watched in your YouTube Recommendations feed? 
Or being recommended videos from 11 years ago? 
No matter how often you click "Not interested", YouTube still keeps recommending you those videos? 
Do you never watch YouTube Mixes? 
Then this extension is for you! It will filter these videos out of your Recommendations feed, leaving you with relevant, fresh content. 

You can also configure how much of a video you need to watch, or how old a video must be, before they get filtered out. 

Does NOT affect videos in Subscriptions, Search, Explore, Library, History, etc. 

You can also open the Console (Option + CMD + J on Mac) to see the videos that were hidden.

Source: https://github.com/garygcchiu/YouTube-Recommendations-Filter                    

拡張機能の基本情報

名前 YouTube Recommendations Filter YouTube Recommendations Filter
ID pefndkngkakmmfnadcmnfnhemieaapbb
公式URL https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb
説明 Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
ファイルサイズ 23.32 KB
インストール数 87
現在のバージョン 1.2.1
最終更新日 2021-11-10
公開日 2021-10-31
評価 2.33/5 合計 3 レビュー
開発者 Gary Chiu
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://pastebin.com/ypV3HQNi
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendations Filter",
    "description": "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed",
    "version": "1.2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "interface.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}