Youtube Customiser

Add and remove Youtube content panels as you wish.

Wat is Youtube Customiser?

Youtube Customiser is een Chrome-extensie ontwikkeld door Erlend Eelmets, en de belangrijkste functie is "Add and remove Youtube content panels as you wish.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Youtube Customiser

Download Youtube Customiser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Add and remove Youtube content panels as you wish. Does the merchandise bar annoy you? Remove it? Do you want to stop spending time on youtube rabbit holes? Disable video suggestions. Do you judge a video too much based on it's numbers? Disable the numbers.                    

Basisinformatie over de Extensie

Naam Youtube Customiser Youtube Customiser
ID jlcpaifegmmdaiafenaeajnkbclgikhp
Officiële URL https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp
Beschrijving Add and remove Youtube content panels as you wish.
Bestandsgrootte 752 KB
Aantal Installaties 12
Huidige Versie 0.0.2
Laatst Bijgewerkt 2020-11-11
Publicatiedatum 2020-11-11
Ontwikkelaar Erlend Eelmets
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.2",
    "short_name": "Youtube Custom",
    "name": "Youtube Customiser",
    "description": "Add and remove Youtube content panels as you wish.",
    "browser_action": {
        "default_title": "Youtube Customiser",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "22": "img\/icon-22.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}