TimeMarks

Save the timestamp of the currently viewed video.

Was ist TimeMarks?

TimeMarks ist eine Chrome-Erweiterung, die von yosh-is entwickelt wurde, und ihr Hauptmerkmal ist "Save the timestamp of the currently viewed video.".

Erweiterungsscreenshots

screenshot

TimeMarks-Erweiterungs-CRX-Datei herunterladen

Laden Sie TimeMarks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Save the timestamp of the currently viewed video.

- YouTube

現在、視聴しているビデオのタイムスタンプを保存します。

動画を再度この位置から見直したい!  
推してるあの人のフレーズの位置を保存しておきたい!  
TimeMarks を試してください。                    

Grundlegende Informationen zur Erweiterung

Name TimeMarks TimeMarks
ID kmhifgejjeipinjnmdfgglobeapajbna
Offizielle URL https://chromewebstore.google.com/detail/timemarks/kmhifgejjeipinjnmdfgglobeapajbna
Beschreibung Save the timestamp of the currently viewed video.
Dateigröße 24.64 KB
Installationsanzahl 33
Aktuelle Version 0.2.4
Letztes Update 2022-08-31
Veröffentlichungsdatum 2022-07-06
Entwickler yosh-is
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://github.com/yosh-is/TimeMarks/blob/main/privacy_policy.md
Unterstützte Sprachen 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."
        }
    }
}