Feed Cleanup for YouTube™

Collapses or hides watched videos within a YouTube feed.

Feed Cleanup for YouTube™とは何ですか?

Feed Cleanup for YouTube™はArmandas Jarušauskasによって開発されたChromeの拡張機能で、その主な機能は「Collapses or hides watched videos within a YouTube feed.」です。

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

screenshot
screenshot

Feed Cleanup for YouTube™拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension checks your YouTube feed page and collapses or hides all the watched entries, allowing you to focus only on new videos.

IMPORTANT: if you experience any problems, please contact me via "Send Feedback" link in "Details" tab. Reviews are not meant for reporting bugs! Thanks.

Changelog:

    2022-02-06
        - Fixed element access errors.

    2017-09-01
        - Updating the code to work with the latest YouTube design.

    2016-11-24
        - Detection mechanism changed to use the new "progress bar".

    2015-04-11
        - Updating the code to work with the latest version of YouTube.

    2015-01-16
        - Adding the "by" line  to the clutter list.

    2014-08-25
        - Some small changes to match the updated subscriptions page.

    2014-04-21
        - Adding functionality for hiding the watched videos.

    2014-03-27
        - Updating the extension to support HTTPS.

    2013-08-22
        - Adding functionality for cleaning-up additionally loaded feed items.
        - Updating the list of elements to be hidden.

    2013-08-21
        - Updating the extension to work with the latest YouTube design.                    

拡張機能の基本情報

名前 Feed Cleanup for YouTube™ Feed Cleanup for YouTube™
ID jdhiaadoiejmfdpfankpionkocihfbcn
公式URL https://chromewebstore.google.com/detail/feed-cleanup-for-youtube/jdhiaadoiejmfdpfankpionkocihfbcn
説明 Collapses or hides watched videos within a YouTube feed.
ファイルサイズ 223 KB
インストール数 248
現在のバージョン 0.5.2
最終更新日 2022-02-06
公開日 2017-09-01
評価 3.00/5 合計 13 レビュー
開発者 Armandas Jarušauskas
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/armandas/YouTube-Feed-Cleanup
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feed Cleanup for YouTube\u2122",
    "description": "Collapses or hides watched videos within a YouTube feed.",
    "version": "0.5.2",
    "icons": {
        "128": "yfc_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/feed\/subscriptions"
            ],
            "js": [
                "yfc.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "yfc_19.png",
        "default_title": "Feed Cleanup",
        "default_popup": "yfc_popup.html"
    },
    "permissions": [
        "storage"
    ]
}