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 |
官方網址 | 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\/*" ] } ] } |