TimeMarks

Save the timestamp of the currently viewed video.

TimeMarks क्या है?

TimeMarks yosh-is द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save the timestamp of the currently viewed video."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TimeMarks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Save the timestamp of the currently viewed video.

- YouTube

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

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

एक्सटेंशन की मूल जानकारी

नाम TimeMarks TimeMarks
ID kmhifgejjeipinjnmdfgglobeapajbna
आधिकारिक URL 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."
        }
    }
}