Distraction Free YouTube

YouTube with less distraction!

Vad är Distraction Free YouTube?

Distraction Free YouTube är en Chrome-tillägg utvecklad av developer.4af2c, och dess huvudfunktion är "YouTube with less distraction!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Distraction Free YouTube-förlängningens CRX-fil

Ladda ner Distraction Free YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
Officiell webbadress https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
Beskrivning YouTube with less distraction!
Filstorlek 484 KB
Antal Installationer 31
Aktuell Version 1.0.2
Senast Uppdaterad 2022-05-14
Publiceringsdatum 2022-03-27
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare developer.4af2c
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}