Youtube focus

Blocks Youtube recommendations so that you see only what you search.

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

Το Youtube focus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Priyanshu Nayan, και η κύρια λειτουργία του είναι "Blocks Youtube recommendations so that you see only what you search.".

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

screenshot

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

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

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

                        This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.                    

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

Όνομα Youtube focus Youtube focus
ID elnjcclakbcdhbljljckfokbpmcicemo
Επίσημο URL https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo
Περιγραφή Blocks Youtube recommendations so that you see only what you search.
Μέγεθος Αρχείου 10.62 KB
Αριθμός Εγκαταστάσεων 40
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2020-04-08
Ημερομηνία Δημοσίευσης 2020-04-08
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Priyanshu Nayan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/priyanshunayan/youtube-focus
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube focus",
    "version": "1.0.1",
    "description": "Blocks Youtube recommendations so that you see only what you search.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "storage",
            "tabs",
            "declarativeContent"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/youtube.com\/",
                "*:\/\/youtube.com\/watch*",
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "default_icon": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}