Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

O que é Youtube Repeat?

Youtube Repeat é uma extensão do Chrome desenvolvida por mercury200Hg, e sua principal característica é "Save your preference once and it will repeat the video for your favourite songs".

Capturas de Tela da Extensão

screenshot

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

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

Informações Básicas da Extensão

Nome Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
URL Oficial https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
Descrição Save your preference once and it will repeat the video for your favourite songs
Tamanho do Arquivo 8.63 KB
Contagem de Instalações 361
Versão Atual 1.0.0
Última Atualização 2017-03-12
Data de Publicação 2017-03-12
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor mercury200Hg
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}