YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
什麼是YouTube Timestamper?
YouTube Timestamper是由IAmVisco開發的Chrome擴展程式,該擴展的主要功能是“Allows you to quickly copy current video/stream timestamp (with offset).”。
擴展截圖
下載YouTube Timestamper擴展crx文件
下載YouTube Timestamper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
擴展基本資訊
名稱 | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
官方網址 | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
簡介 | Allows you to quickly copy current video/stream timestamp (with offset). |
檔案大小 | 16.88 KB |
安裝次數 | 82 |
目前版本 | 1.3.0 |
更新時間 | 2023-06-21 |
上架時間 | 2021-05-07 |
評分 | 5.00/5 共 3 次評分 |
開發者 | IAmVisco |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |