Recommendation filter for YouTube

Customise which recommendations are shown on YouTube.

Co je Recommendation filter for YouTube?

Recommendation filter for YouTube je rozšíření Chrome vyvinuté Leolime, a jeho hlavní funkcí je „Customise which recommendations are shown on YouTube.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Recommendation filter for YouTube

Stáhněte si soubory rozšíření Recommendation filter for YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        YouTube can be a powerful tool for learning but sometimes the entertaining recommendations get in the way...

✔️ Why use Recommendation filter for YouTube?
• Are you easily distracted? Use YouTube to it's full potential by hiding distracting recommendations when you are trying to be productive.
• Filter recommendations to only show what you are currently interested in.
• Avoid tempting click bait in the recommendation section by filtering out a topic or YouTuber.                    

Základní Informace o Rozšíření

Název Recommendation filter for YouTube Recommendation filter for YouTube
ID eoelfnihmeicibagdaalkdhmmdohcgml
Oficiální URL https://chromewebstore.google.com/detail/recommendation-filter-for/eoelfnihmeicibagdaalkdhmmdohcgml
Popis Customise which recommendations are shown on YouTube.
Velikost souboru 46.61 KB
Počet instalací 408
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-08-19
Datum Vydání 2020-08-19
Hodnocení 3.83/5 Celkem 6 Hodnocení
Vývojář Leolime
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recommendation filter for YouTube",
    "description": "Customise which recommendations are shown on YouTube.",
    "version": "1.0.0",
    "permissions": [
        "*:\/\/www.youtube.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "dist\/content\/bundle.js"
            ],
            "css": [
                "style\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "dist\/background\/bundle.js"
        ]
    },
    "browser_action": {
        "default_popup": "layout\/popup.html",
        "default_icon": {
            "48": "images\/ic_48.png",
            "128": "images\/ic_128.png"
        }
    },
    "options_ui": {
        "page": "layout\/popup.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "images\/ic_48.png",
        "128": "images\/ic_128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "images\/*.svg",
        "style\/*.css"
    ],
    "minimum_chrome_version": "5"
}