YouTube Cleaner

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

Vad är YouTube Cleaner?

YouTube Cleaner är en Chrome-tillägg utvecklad av Florian Wetschoreck, och dess huvudfunktion är "Do you sometimes find yourself lost in watching the next recommended video? YouTube Cleaner helps you save your time (and…".

Ladda ner YouTube Cleaner-förlängningens CRX-fil

Ladda ner YouTube Cleaner-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

                        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"                    

Grundläggande Information om Tillägg

Namn YouTube Cleaner YouTube Cleaner
ID ffgcabejbifjfcnlnbmjljfghiljehnc
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-cleaner/ffgcabejbifjfcnlnbmjljfghiljehnc
Beskrivning Do you sometimes find yourself lost in watching the next recommended video? YouTube Cleaner helps you save your time (and…
Filstorlek 9.67 KB
Antal Installationer 142
Aktuell Version 0.0.0.1
Senast Uppdaterad 2016-04-16
Publiceringsdatum 2016-04-16
Betyg 4.75/5 Totalt 8 Betyg
Utvecklare Florian Wetschoreck
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}