Distraction Free YouTube

YouTube with less distraction!

Co to jest Distraction Free YouTube?

Distraction Free YouTube to rozszerzenie Chrome opracowane przez developer.4af2c, a jego główną funkcją jest „YouTube with less distraction!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Distraction Free YouTube

Pobierz pliki rozszerzeń Distraction Free YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension blocks the home page, explore page, side bar, end screen video tile, and YouTube Shorts.

the project is open source: https://github.com/dwssv/distraction-free-youtube                    

Podstawowe informacje o rozszerzeniu

Nazwa Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
Oficjalny URL https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
Opis YouTube with less distraction!
Rozmiar pliku 484 KB
Liczba instalacji 31
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2022-05-14
Data Publikacji 2022-03-27
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper developer.4af2c
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "description": "YouTube with less distraction!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}