YouTube Repeat
Repeats a YouTube video
O que é YouTube Repeat?
YouTube Repeat é uma extensão do Chrome desenvolvida por Jimmy Fu, e sua principal característica é "Repeats a YouTube video".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Repeat
Baixe arquivos de extensão YouTube Repeat 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
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
Informações Básicas da Extensão
Nome | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
URL Oficial | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
Descrição | Repeats a YouTube video |
Tamanho do Arquivo | 24.45 KB |
Contagem de Instalações | 2,323 |
Versão Atual | 1.1 |
Última Atualização | 2015-10-09 |
Data de Publicação | 2015-10-08 |
Classificação | 4.37/5 Total de 35 Avaliações |
Desenvolvedor | Jimmy Fu |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |