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”。
擴展截圖
下載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 |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
官方網址 | 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 } |