TimeMarks
Save the timestamp of the currently viewed video.
什麼是TimeMarks?
TimeMarks是由yosh-is開發的Chrome擴展程式,該擴展的主要功能是“Save the timestamp of the currently viewed video.”。
擴展截圖
下載TimeMarks擴展crx文件
下載TimeMarks擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Save the timestamp of the currently viewed video.
- YouTube
現在、視聴しているビデオのタイムスタンプを保存します。
動画を再度この位置から見直したい!
推してるあの人のフレーズの位置を保存しておきたい!
TimeMarks を試してください。 擴展基本資訊
| 名稱 | |
| ID | kmhifgejjeipinjnmdfgglobeapajbna |
| 官方網址 | https://chromewebstore.google.com/detail/timemarks/kmhifgejjeipinjnmdfgglobeapajbna |
| 簡介 | Save the timestamp of the currently viewed video. |
| 檔案大小 | 24.64 KB |
| 安裝次數 | 33 |
| 目前版本 | 0.2.4 |
| 更新時間 | 2022-08-31 |
| 上架時間 | 2022-07-06 |
| 開發者 | yosh-is |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://github.com/yosh-is/TimeMarks/blob/main/privacy_policy.md |
| 支援的語言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TimeMarks",
"version": "0.2.4",
"description": "__MSG_app_description__",
"default_locale": "ja",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.twitch.tv\/*",
"https:\/\/video.unext.jp\/*"
],
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.twitch.tv\/*",
"https:\/\/video.unext.jp\/*"
],
"run_at": "document_start",
"js": [
"js\/contentScript.js"
],
"css": [
"content\/content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content\/*",
"popup\/*",
"src\/ActiveItem.js"
],
"matches": [
"https:\/\/*.youtube.com\/*",
"https:\/\/*.twitch.tv\/*",
"https:\/\/video.unext.jp\/*"
]
}
],
"action": [],
"icons": {
"16": "assets\/tm-icon.png",
"32": "assets\/tm-icon.png",
"48": "assets\/tm-icon.png",
"128": "assets\/tm-icon.png"
},
"commands": {
"add-tm": {
"suggested_key": {
"default": "Ctrl+B"
},
"description": "Save the current time of the video."
},
"sidepanel": {
"suggested_key": {
"default": "Alt+B"
},
"description": "Show\/Hide sidepanel."
}
}
} | |