TimeMarks

Save the timestamp of the currently viewed video.

Qu'est-ce que TimeMarks ?

TimeMarks est une extension Chrome développée par yosh-is, et sa fonction principale est "Save the timestamp of the currently viewed video.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TimeMarks

Téléchargez les fichiers d'extension TimeMarks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Save the timestamp of the currently viewed video.

- YouTube

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

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

Informations de Base sur l'Extension

Nom TimeMarks TimeMarks
ID kmhifgejjeipinjnmdfgglobeapajbna
URL Officiel https://chromewebstore.google.com/detail/timemarks/kmhifgejjeipinjnmdfgglobeapajbna
Description Save the timestamp of the currently viewed video.
Taille du Fichier 24.64 KB
Nombre d'Installations 33
Version Actuelle 0.2.4
Dernière Mise à Jour 2022-08-31
Date de Publication 2022-07-06
Développeur yosh-is
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://github.com/yosh-is/TimeMarks/blob/main/privacy_policy.md
Langues Prises en Charge 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."
        }
    }
}