Distraction Free YouTube

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

¿Qué es Distraction Free YouTube?

Distraction Free YouTube es una extensión de Chrome desarrollada por distractions.freee, y su función principal es "Are you distracted while watching educational videos! Hide those who got in your way to success.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Distraction Free YouTube

Descarga archivos de extensión Distraction Free YouTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Distraction Free YouTube Distraction Free YouTube
ID hoeoebicgchngdidmbadgkdiempefcfn
URL Oficial https://chromewebstore.google.com/detail/distraction-free-youtube/hoeoebicgchngdidmbadgkdiempefcfn
Descripción Are you distracted while watching educational videos! Hide those who got in your way to success.
Tamaño del Archivo 89.64 KB
Cantidad de Instalaciones 853
Versión Actual 0.2.1
Última Actualización 2020-10-19
Fecha de Publicación 2020-10-13
Calificación 4.50/5 Total de 16 Calificaciones
Desarrollador distractions.freee
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}