Youtube Distraction Filter

Remove distracting elements from youtube

Qu'est-ce que Youtube Distraction Filter ?

Youtube Distraction Filter est une extension Chrome développée par Tom Headifen, et sa fonction principale est "Remove distracting elements from youtube".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Distraction Filter

Téléchargez les fichiers d'extension Youtube Distraction Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Youtube Distraction Filter Youtube Distraction Filter
ID bcbpflcbmnnpdhjmfblndddmoimlimbf
URL Officiel https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf
Description Remove distracting elements from youtube
Taille du Fichier 7.3 KB
Nombre d'Installations 99
Version Actuelle 1.0.2
Dernière Mise à Jour 2019-08-06
Date de Publication 2019-08-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur Tom Headifen
Type de Paiement free
Site Web de l'Extension https://github.com/tomheadifen/youtube-distraction-filter
Langues Prises en Charge 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"
    ]
}