Feed Cleanup for YouTube™

Collapses or hides watched videos within a YouTube feed.

Τι είναι το Feed Cleanup for YouTube™;

Το Feed Cleanup for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Armandas Jarušauskas, και η κύρια λειτουργία του είναι "Collapses or hides watched videos within a YouTube feed.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Feed Cleanup for YouTube™

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}