Rabbit Hole for YouTube™

Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again!

Τι είναι το Rabbit Hole for YouTube™;

Το Rabbit Hole for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zedLabs, και η κύρια λειτουργία του είναι "Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again!".

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

screenshot

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

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

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

                        There is magic, but you have to be the magician. This extension allows you to take control of your time and reduce distractions while browsing YouTube™ in the following ways:

- Replace suggested content with cute bunnies!
- Hide comments (including livestream chats)
- Disable the trending and subscriptions pages
- Simplify the navigation drawer
- Disabling the wall of suggestions following a video
- Hiding banner-style ads to maintain a clean and distraction free environment

The options are also heavily customizable, so you can create exactly the experience you want.

----------------------------------

YouTube™ is a trademark of Google LLC and this extension is not endorsed by or affiliated with Google in any way.                    

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

Όνομα Rabbit Hole for YouTube™ Rabbit Hole for YouTube™
ID nlddakjbmpidooplakalfoogdincflfh
Επίσημο URL https://chromewebstore.google.com/detail/rabbit-hole-for-youtube/nlddakjbmpidooplakalfoogdincflfh
Περιγραφή Remove YouTube™ recommendations, comments, and more so you don't go down the rabbit hole again!
Μέγεθος Αρχείου 48.4 KB
Αριθμός Εγκαταστάσεων 10,724
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2022-02-24
Ημερομηνία Δημοσίευσης 2019-10-30
Αξιολόγηση 4.44/5 Συνολικά 64 Αξιολογήσεις
Προγραμματιστής zedLabs
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rabbit Hole for YouTube\u2122",
    "version": "1.2",
    "description": "Remove YouTube\u2122 recommendations, comments, and more so you don't go down the rabbit hole again!",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Rabbit Hole for YouTube\u2122",
        "default_icon": {
            "16": "images\/youtuberabbit16.png",
            "32": "images\/youtuberabbit32.png",
            "48": "images\/youtuberabbit48.png",
            "128": "images\/youtuberabbit128.png"
        }
    },
    "icons": {
        "16": "images\/youtuberabbit16.png",
        "32": "images\/youtuberabbit32.png",
        "48": "images\/youtuberabbit48.png",
        "128": "images\/youtuberabbit128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/nav.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/rabbithole.png",
        "images\/magicbunny.png"
    ],
    "incognito": "not_allowed",
    "manifest_version": 2
}