ScottTheWozify
Modify YouTube thumbnails to include Scott The Woz
O que é ScottTheWozify?
ScottTheWozify é uma extensão do Chrome desenvolvida por kawuchuu, e sua principal característica é "Modify YouTube thumbnails to include Scott The Woz".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ScottTheWozify
Baixe arquivos de extensão ScottTheWozify 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
Is your browser experience boring? Do you need to resist playing Donkey Kong: Barrel Blast? Fear no more. This extension adds the guy who owns Sonic Jam Scott The Woz to every YouTube thumbnail.
Informações Básicas da Extensão
Nome | ScottTheWozify |
ID | acifigdfnfnafjkkapcghalnemfodmah |
URL Oficial | https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah |
Descrição | Modify YouTube thumbnails to include Scott The Woz |
Tamanho do Arquivo | 13.02 MB |
Contagem de Instalações | 2,000 |
Versão Atual | 1.5 |
Última Atualização | 2023-08-25 |
Data de Publicação | 2023-08-24 |
Classificação | 5.00/5 Total de 22 Avaliações |
Desenvolvedor | kawuchuu |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kawuchuu/ScottTheWozify-Youtube |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ScottTheWozify", "version": "1.5", "action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png" }, "default_popup": "options\/options.html", "default_title": "ScottTheWozify Options" }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png" }, "description": "Modify YouTube thumbnails to include Scott The Woz", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "scottthewozify.js" ], "run_at": "document_idle" } ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "images\/*.png", "images\/*.json" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |