Distraction Free YouTube

Are you distracted while watching educational videos! Hide those who got in your way to success.

Qu'est-ce que Distraction Free YouTube ?

Distraction Free YouTube est une extension Chrome développée par distractions.freee, et sa fonction principale est "Are you distracted while watching educational videos! Hide those who got in your way to success.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Distraction Free YouTube

Téléchargez les fichiers d'extension Distraction Free YouTube 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

                        Sometimes while studying or watching educational videos. YouTube recommends videos that distract us, and we end up watching videos that are entirely a waste of time.
We developed this extension as a part of making social media a boon, not a bane.
You can find more info about us on https://distractionsfree.life
We need your feedback on our product. We aim to make social media as productive as we can, and for that, we need your support. Tell us about new features we should introduce in our extension, any bug. 
Thanks for your support.                    

Informations de Base sur l'Extension

Nom Distraction Free YouTube Distraction Free YouTube
ID hoeoebicgchngdidmbadgkdiempefcfn
URL Officiel https://chromewebstore.google.com/detail/distraction-free-youtube/hoeoebicgchngdidmbadgkdiempefcfn
Description Are you distracted while watching educational videos! Hide those who got in your way to success.
Taille du Fichier 89.64 KB
Nombre d'Installations 853
Version Actuelle 0.2.1
Dernière Mise à Jour 2020-10-19
Date de Publication 2020-10-13
Évaluation 4.50/5 Total 16 Évaluations
Développeur distractions.freee
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "version": "0.2.1",
    "description": "Are you distracted while watching educational videos! Hide those who got in your way to success. ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "custom.css"
            ],
            "js": [
                "logic.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/cropped.png",
            "32": "images\/cropped.png",
            "48": "images\/cropped.png",
            "128": "images\/cropped.png"
        }
    },
    "icons": {
        "16": "images\/cropped.png",
        "32": "images\/cropped.png",
        "48": "images\/cropped.png",
        "128": "images\/cropped.png"
    },
    "manifest_version": 2
}