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
官方網址 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"
    ]
}