Youtube Customiser
Add and remove Youtube content panels as you wish.
O que é Youtube Customiser?
Youtube Customiser é uma extensão do Chrome desenvolvida por Erlend Eelmets, e sua principal característica é "Add and remove Youtube content panels as you wish.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Customiser
Baixe arquivos de extensão Youtube Customiser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Youtube Customiser |
ID | jlcpaifegmmdaiafenaeajnkbclgikhp |
URL Oficial | https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp |
Descrição | Add and remove Youtube content panels as you wish. |
Tamanho do Arquivo | 752 KB |
Contagem de Instalações | 12 |
Versão Atual | 0.0.2 |
Última Atualização | 2020-11-11 |
Data de Publicação | 2020-11-11 |
Desenvolvedor | Erlend Eelmets |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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';" } |