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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}