YouTube Cleaner

Do you sometimes find yourself lost in watching the next recommended video? YouTube Cleaner helps you save your time (and…

Was ist YouTube Cleaner?

YouTube Cleaner ist eine Chrome-Erweiterung, die von Florian Wetschoreck entwickelt wurde, und ihr Hauptmerkmal ist "Do you sometimes find yourself lost in watching the next recommended video? YouTube Cleaner helps you save your time (and…".

YouTube Cleaner-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Cleaner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Do you sometimes find yourself lost in watching the next recommended video?

YouTube Cleaner helps you save your time (and self-control energy) by simply removing distracting elements from YouTube.

Currently, the following elements are blocked: recommendations on the main page, on the video page, comments. As an extra - it even blocks the automatic replay of the next video.

Do you occasionally enjoy the full blow of YouTube's distractions? Just turn the extension temporarily off by the click of a button.

Do you have any improvement suggestions or requests to have other elements blocked/adjusted as well? Just write me a mail! I am looking forward to hear from you - also, if it is just a small "Thank you"                    

Grundlegende Informationen zur Erweiterung

Name YouTube Cleaner YouTube Cleaner
ID ffgcabejbifjfcnlnbmjljfghiljehnc
Offizielle URL https://chrome.google.com/webstore/detail/youtube-cleaner/ffgcabejbifjfcnlnbmjljfghiljehnc
Beschreibung Do you sometimes find yourself lost in watching the next recommended video? YouTube Cleaner helps you save your time (and…
Dateigröße 9.67 KB
Installationsanzahl 142
Aktuelle Version 0.0.0.1
Letztes Update 2016-04-16
Veröffentlichungsdatum 2016-04-16
Bewertung 4.75/5 Insgesamt 8 Bewertungen
Entwickler Florian Wetschoreck
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Cleaner",
    "version": "0.0.0.1",
    "icons": {
        "38": "youtube_cleaner.png",
        "128": "youtube_cleaner.png"
    },
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "injected_script.js"
    ]
}