Real Listen On Repeat

Repeat youtube videos

O que é Real Listen On Repeat?

Real Listen On Repeat é uma extensão do Chrome desenvolvida por https://miltonlaufer.com.ar, e sua principal característica é "Repeat youtube videos".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Real Listen On Repeat

Baixe arquivos de extensão Real Listen On 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

                        A simple button to listen Youtube videos on repeat                    

Informações Básicas da Extensão

Nome Real Listen On Repeat Real Listen On Repeat
ID ignbdlcbpccodmdokjdkjfoebimbkpfc
URL Oficial https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc
Descrição Repeat youtube videos
Tamanho do Arquivo 8.98 KB
Contagem de Instalações 89
Versão Atual 0.0.5.1
Última Atualização 2017-12-08
Data de Publicação 2017-12-07
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://miltonlaufer.com.ar
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Real Listen On Repeat",
    "short_name": "RealListenOnRepeat",
    "description": "Repeat youtube videos",
    "version": "0.0.5.1",
    "manifest_version": 2,
    "author": "@onwhatthereis",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "name": "Click to set on\/off the Youtube Repeat mode"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "myscript.js"
            ]
        }
    ]
}