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. 扩展基本信息
| 名称 | |
| ID | fpjlholgdibolbjehinkkmbgodapojmp |
| 官方URL | 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"
}
} | |