Any Video Resume

Return to last time you stopped any video.

什么是Any Video Resume?

Any Video Resume是由https://www.bit01.de开发的Chrome扩展程序,该扩展的主要功能是“Return to last time you stopped any video.”。

扩展截图

screenshot
screenshot

下载Any Video Resume扩展crx文件

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

扩展使用说明

                        The extension remembers where you last left a video and *resumes* it there. This works for ANY HTML5 video on all common platforms (YouTube, Vimeo, ...). This works even without a logged in user. for each It remembers the last places of videos for a year.

It considers only videos that go at least 60 seconds. It will ignore short videos (intros, promotional videos...). As soon as the last 30 seconds are reached, the video starts from the beginning.                    

扩展基本信息

名称 Any Video Resume Any Video Resume
ID nlbiijlalckdjibflknamcbhonniglkl
官方URL https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl
简介 Return to last time you stopped any video.
文件大小 20.34 KB
安装次数 100
当前版本 1.2.0
更新时间 2021-11-26
上架时间 2021-11-10
评分 5.00/5 共2次评分
开发者 https://www.bit01.de
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/bitnulleins/any-video-resume
帮助页面URL https://www.bit01.de/kontakt/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Any Video Resume",
    "version": "1.2.0",
    "description": "Return to last time you stopped any video.",
    "icons": {
        "48": "icons\/logo-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/js\/storage.js",
                ".\/js\/video.js",
                ".\/js\/content.js",
                ".\/js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/logo-48.png",
        "default_popup": ".\/html\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}