YouTube Markup
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…
什么是YouTube Markup?
YouTube Markup是由Umut Korkmaz开发的Chrome扩展程序,该扩展的主要功能是“You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…”。
扩展截图
下载YouTube Markup扩展crx文件
下载YouTube Markup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational video, you can mark the minute where something you are interested in is located, so that you can quickly find what you are looking for when you look at the same educational video again.
扩展基本信息
名称 | YouTube Markup |
ID | emhjhcepnjieabmcmioendnlpbbhlnbn |
官方URL | https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn |
简介 | You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational… |
文件大小 | 26.09 KB |
安装次数 | 46 |
当前版本 | 1.1.1 |
更新时间 | 2023-03-02 |
上架时间 | 2022-09-06 |
评分 | 5.00/5 共10次评分 |
开发者 | Umut Korkmaz |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/umutkorkmaaz/youtube-marker |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Markup", "version": "1.1.1", "icons": { "16": ".\/assets\/icon\/youtube-markup-16x16.png", "48": ".\/assets\/icon\/youtube-markup-48x48.png", "128": ".\/assets\/icon\/youtube-markup-128x128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": ".\/assets\/js\/background.min.js" }, "action": { "default_title": "YouTube Markup", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ ".\/assets\/js\/content.min.js" ], "css": [ ".\/assets\/css\/all.min.css" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |