YT Gamify
A better YouTube Interface
O que é YT Gamify?
YT Gamify é uma extensão do Chrome desenvolvida por Maxime, e sua principal característica é "A better YouTube Interface".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YT Gamify
Baixe arquivos de extensão YT Gamify 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
YT Gamify allows you to apply the new YouTube Gaming Interface to classic YouTube links.
Informações Básicas da Extensão
Nome | |
ID | ngealcjkilfhmkilnoemhhcmjlcjfndb |
URL Oficial | https://chromewebstore.google.com/detail/yt-gamify/ngealcjkilfhmkilnoemhhcmjlcjfndb |
Descrição | A better YouTube Interface |
Tamanho do Arquivo | 14.78 KB |
Contagem de Instalações | 51 |
Versão Atual | 1.4 |
Última Atualização | 2016-05-12 |
Data de Publicação | 2016-05-11 |
Classificação | 4.33/5 Total de 6 Avaliações |
Desenvolvedor | Maxime |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YT Gamify", "version": "1.4", "description": "A better YouTube Interface", "icons": { "48": "48.png", "128": "128.png" }, "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "script.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "browser_action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |