Youtube Declutter

Tidy up your YouTube watching experience by blacklisting channels or time blocking videos

Τι είναι το Youtube Declutter;

Το Youtube Declutter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Simply IT, και η κύρια λειτουργία του είναι "Tidy up your YouTube watching experience by blacklisting channels or time blocking videos".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Declutter

Λήψη αρχείων επέκτασης Youtube Declutter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Welcome to Youtube Declutter - the perfect chrome extension to take control of your YouTube feed. This extension allows you to selectively toggle the visibility of YouTube videos based on their publishing date, giving you a clutter-free viewing experience.

With Youtube Declutter, you can set rules for individual channels, ensuring that you only see videos that you want to watch. You can choose to view videos published in the last week, month, quarter, year, or hide them completely. If you want to see all videos without any filters, the extension has got you covered as well.

The extension also features a general rule option for all channels that don't have a specific rule yet. This helps you maintain a consistent viewing experience across all channels.

With the toggle visibility option, you can view the videos that you have hidden from your feed. This feature allows you to see what videos were hidden and toggle their visibility back on, giving you more control over your feed.

Additionally, Youtube Declutter provides you with the option to import and export your rules. This feature allows you to save your rules and use them across different devices or share them with friends, making it easy to manage your YouTube feed the way you want.

Youtube Declutter is user-friendly and easy to use, with a simple interface that lets you make changes to your settings with just a few clicks. If you want to take control of your YouTube feed and enjoy a clutter-free viewing experience, download Youtube Declutter today and start customizing your feed to your liking!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Youtube Declutter Youtube Declutter
ID ppgcndegheafanbbhceaomdelaemagbj
Επίσημο URL https://chromewebstore.google.com/detail/youtube-declutter/ppgcndegheafanbbhceaomdelaemagbj
Περιγραφή Tidy up your YouTube watching experience by blacklisting channels or time blocking videos
Μέγεθος Αρχείου 302 KB
Αριθμός Εγκαταστάσεων 61
Τρέχουσα Έκδοση 1.0.11
Τελευταία Ενημέρωση 2023-10-24
Ημερομηνία Δημοσίευσης 2023-05-18
Προγραμματιστής Simply IT
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Tidy up your YouTube watching experience by blacklisting channels or time blocking videos",
    "version": "1.0.11",
    "manifest_version": 3,
    "name": "Youtube Declutter",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "logo.svg"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ]
}