YouTube Timestamp Bookmarker - Gravitate Webs

Saving timestamps in YouTube videos

什么是YouTube Timestamp Bookmarker - Gravitate Webs?

YouTube Timestamp Bookmarker - Gravitate Webs是由gravitatewebs开发的Chrome扩展程序,该扩展的主要功能是“Saving timestamps in YouTube videos”。

扩展截图

screenshot
screenshot

下载YouTube Timestamp Bookmarker - Gravitate Webs扩展crx文件

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

扩展使用说明

                        Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.                    

扩展基本信息

名称 YouTube Timestamp Bookmarker - Gravitate Webs YouTube Timestamp Bookmarker - Gravitate Webs
ID kbpcmedhleadonchilbecnmmcfeilmml
官方URL https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml
简介 Saving timestamps in YouTube videos
文件大小 138 KB
安装次数 31
当前版本 0.1.0.0
更新时间 2022-06-08
上架时间 2022-06-07
开发者 gravitatewebs
电子邮箱 [email protected]
付费类型 free
扩展官网 https://gravitatewebs.com/
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamp Bookmarker - Gravitate Webs",
    "version": "0.1.0.0",
    "description": "Saving timestamps in YouTube videos",
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}