Veep

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

什么是Veep?

Veep是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Keep your videos playback positions in sync across all of your devices and browser restarts.”。

扩展截图

screenshot

下载Veep扩展crx文件

下载Veep扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Veep Veep
ID floamojfedahogohlnlakmehjnjbnhkj
官方URL https://chromewebstore.google.com/detail/veep/floamojfedahogohlnlakmehjnjbnhkj
简介 Keep your videos playback positions in sync across all of your devices and browser restarts.
文件大小 23.13 KB
安装次数 31
当前版本 1.1.0
更新时间 2016-02-05
上架时间 2016-02-05
开发者 Unknown
付费类型 free
帮助页面URL https://github.com/cGuille/veep
支持的语言 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"
    ]
}