Youtube Distraction Filter

Remove distracting elements from youtube

Co je Youtube Distraction Filter?

Youtube Distraction Filter je rozšíření Chrome vyvinuté Tom Headifen, a jeho hlavní funkcí je „Remove distracting elements from youtube“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Youtube Distraction Filter

Stáhněte si soubory rozšíření Youtube Distraction Filter 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í

                        This Chrome extension by default will remove the comment section and related video section whenever you are watching a video.

This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos.

Known bugs:
-If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link.

Change Log:
September 4th 2017:
-Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes.

August 5th 2019
-Fixed bug where related videos wouldn't hide.                    

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

Název Youtube Distraction Filter Youtube Distraction Filter
ID bcbpflcbmnnpdhjmfblndddmoimlimbf
Oficiální URL https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf
Popis Remove distracting elements from youtube
Velikost souboru 7.3 KB
Počet instalací 99
Aktuální Verze 1.0.2
Poslední Aktualizace 2019-08-06
Datum Vydání 2019-08-05
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Tom Headifen
Typ Platby free
Webové stránky Rozšíření https://github.com/tomheadifen/youtube-distraction-filter
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Distraction Filter",
    "description": "Remove distracting elements from youtube",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "eye-icon.png",
        "default_title": "Youtube Distraction Filter",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube-distraction-filter.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage"
    ]
}