YouTube Repeater
Repeats YouTube video after it ends.
O que é YouTube Repeater?
YouTube Repeater é uma extensão do Chrome desenvolvida por shogo, e sua principal característica é "Repeats YouTube video after it ends.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Repeater
Baixe arquivos de extensão YouTube Repeater 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
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
Informações Básicas da Extensão
Nome | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
Descrição | Repeats YouTube video after it ends. |
Tamanho do Arquivo | 16.98 KB |
Contagem de Instalações | 423 |
Versão Atual | 0.0.4 |
Última Atualização | 2019-03-18 |
Data de Publicação | 2019-03-18 |
Classificação | 3.50/5 Total de 4 Avaliações |
Desenvolvedor | shogo |
Tipo de Pagamento | free |
Site da Extensão | http://shogo.eu/ |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |