Youtube Timestamp

Save youtube videos with exact timestamps for later.

什么是Youtube Timestamp?

Youtube Timestamp是由kirill17910开发的Chrome扩展程序,该扩展的主要功能是“Save youtube videos with exact timestamps for later.”。

扩展截图

screenshot

下载Youtube Timestamp扩展crx文件

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

扩展使用说明

                        This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them.

This is an open source project, and all source code can be found on GitHub. 
https://github.com/kotikkir9/Youtube 

Changes:
27/12/2022 - Added new animated delete button.                    

扩展基本信息

名称 Youtube Timestamp Youtube Timestamp
ID ciognandfojfcelnokkgaapgmafciekl
官方URL https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl
简介 Save youtube videos with exact timestamps for later.
文件大小 11.57 KB
安装次数 179
当前版本 1.1
更新时间 2022-12-28
上架时间 2022-05-24
评分 5.00/5 共4次评分
开发者 kirill17910
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/kotikkir9/Youtube
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp",
    "description": "Save youtube videos with exact timestamps for later.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/icon.png",
            "32": ".\/images\/icon.png",
            "38": ".\/images\/icon.png",
            "128": ".\/images\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icon.png",
        "32": ".\/images\/icon.png",
        "38": ".\/images\/icon.png",
        "128": ".\/images\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ]
}