YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

O que é YouTube Everywhere?

YouTube Everywhere é uma extensão do Chrome desenvolvida por Jared Frank, e sua principal característica é "Lets YouTube videos play on any page with a YouTube Link".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Everywhere

Baixe arquivos de extensão YouTube Everywhere 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

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

Informações Básicas da Extensão

Nome YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL Oficial https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Descrição Lets YouTube videos play on any page with a YouTube Link
Tamanho do Arquivo 104 KB
Contagem de Instalações 1,000
Versão Atual 1.3.3
Última Atualização 2015-08-12
Data de Publicação 2015-08-12
Classificação 3.93/5 Total de 30 Avaliações
Desenvolvedor Jared Frank
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 Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}