Video Resumer

Automatically resumes YouTube videos from where you played them last.

什么是Video Resumer?

Video Resumer是由Appteligent LTD.开发的Chrome扩展程序,该扩展的主要功能是“Automatically resumes YouTube videos from where you played them last.”。

扩展截图

screenshot
screenshot

下载Video Resumer扩展crx文件

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

扩展使用说明

                        Without this extension, for example, when you click through YouTube videos, back and forth, they always start from the beginning, even those, you left watched half way through. No more. With this extension, previously watched videos will resume from where you left them at. Even if you restart your browser.

Version 1.2.1, 1.2.2 fix playback issues with updated YouTube interface.

Version 1.2.0 brings additional options, such as considering a video finished if only a few seconds remain on it and expiring older videos.

Version 1.1 and up now handles YouTube videos, posted on other websites.                    

扩展基本信息

名称 Video Resumer Video Resumer
ID bongjkoajofkfpofginnhecihgaeldpe
官方URL https://chromewebstore.google.com/detail/video-resumer/bongjkoajofkfpofginnhecihgaeldpe
简介 Automatically resumes YouTube videos from where you played them last.
文件大小 20.69 KB
安装次数 44,553
当前版本 1.2.2
更新时间 2014-02-06
上架时间 2014-02-05
评分 4.03/5 共343次评分
开发者 Appteligent LTD.
电子邮箱 [email protected]
付费类型 free
支持的语言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Resumer",
    "version": "1.2.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "content\/options.html",
    "background": {
        "scripts": [
            "content\/settings.js",
            "content\/console.js",
            "content\/chrome-storage.js",
            "content\/tracker.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms"
    ]
}