Markers for YouTube

Store your video timestamps and navigate between them easily at any time!

Markers for YouTubeคืออะไร?

Markers for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brainmaker และคุณลักษณะหลักของมันคือ "Store your video timestamps and navigate between them easily at any time!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Markers for YouTube

ดาวน์โหลดไฟล์ส่วนขยาย Markers for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With this extension you can visually mark and remember your favorite tamistamps of any video on YouTube and quickly navigate between them. 
The extension adds customizable visual markers to the progress bar of the video and allows you to quickly navigate between them. Also it has a viewable history of marked videos. Additionally, the extension allows you to create screenshots with one click on hotkey and removes some annoying popups.

This extension does not collects your data. You can find all source code here
https://github.com/StasPlatonov/youtube-timestamp-storage                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Markers for YouTube Markers for YouTube
ID ngmccblpapmeelcndcgnjaidmgmfnidh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/markers-for-youtube/ngmccblpapmeelcndcgnjaidmgmfnidh
คำอธิบาย Store your video timestamps and navigate between them easily at any time!
ขนาดไฟล์ 354 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2023-11-09
วันที่เผยแพร่ 2021-11-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Brainmaker
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://docs.google.com/document/d/1OPPabFSwyA16WQEi0RTxP8-QiOBuncNkY7r8i7uTwyM/edit?usp=sharing
ภาษาที่รองรับ en,en-GB,en-US,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.3",
    "manifest_version": 3,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "32": ".\/icons\/timeline-32.png",
        "64": ".\/icons\/timeline-64.png",
        "128": ".\/icons\/timeline-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                "youtube-content-script.js"
            ],
            "css": [
                "youtube.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "youtube.css",
                "icons\/screenshot-white-32.png",
                "icons\/prev-white-32.png",
                "icons\/next-white-32.png",
                "icons\/add-white-32.png",
                "icons\/del-white-32.png",
                "icons\/del-video.png",
                "icons\/settings.png"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "commands": {
        "add-marker": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "__MSG_tooltip_add_marker__"
        },
        "remove-marker": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "__MSG_tooltip_remove_marker__"
        },
        "prev-marker": {
            "suggested_key": {
                "default": "Alt+Shift+Left"
            },
            "description": "__MSG_tooltip_prev__"
        },
        "next-marker": {
            "suggested_key": {
                "default": "Alt+Shift+Right"
            },
            "description": "__MSG_tooltip_next__"
        },
        "save-screenshot": {
            "description": "__MSG_tooltip_screenshot__"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}