Veep

Keep your videos playback positions in sync across all of your devices and browser restarts.

O que é Veep?

Veep é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Keep your videos playback positions in sync across all of your devices and browser restarts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Veep

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

                        Veep allows you to watch Youtube videos from where you let them even if you closed the tab, restarted your browser or even used another computer.

In order to synchronize playback positions across all of your devices, you need to be logged into Chrome with the same account and have the sync enabled in the browser settings on every devices.                    

Informações Básicas da Extensão

Nome Veep Veep
ID floamojfedahogohlnlakmehjnjbnhkj
URL Oficial https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj
Descrição Keep your videos playback positions in sync across all of your devices and browser restarts.
Tamanho do Arquivo 23.13 KB
Contagem de Instalações 31
Versão Atual 1.1.0
Última Atualização 2016-02-05
Data de Publicação 2016-02-05
Desenvolvedor Unknown
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/cGuille/veep
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Veep",
    "description": "Keep your videos playback positions in sync across all of your devices and browser restarts.",
    "version": "1.1.0",
    "icons": {
        "16": "img\/veep-16.png",
        "48": "img\/veep-48.png",
        "128": "img\/veep-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "src\/youtube-storage.js",
                "src\/url-params.js",
                "src\/youtube.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/youtube-storage.js",
            "src\/youtube-cleanup.js",
            "src\/videos-count.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/veep-19.png",
            "38": "img\/veep-38.png"
        },
        "default_popup": "src\/last-videos.html",
        "default_title": "Veep"
    },
    "permissions": [
        "storage"
    ]
}