Youtube Timestamp Saver

It helps you save timestamps in Youtube videos

Youtube Timestamp Saverคืออะไร?

Youtube Timestamp Saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Asfand Saddiqui และคุณลักษณะหลักของมันคือ "It helps you save timestamps in Youtube videos"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Timestamp Saver

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

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

                        Are you tired of losing track of those golden moments while watching YouTube videos? My YouTube Timestamp Bookmark Extension is here to make your video-watching experience smarter and more efficient.

★ The Problem:
We've all been there – watching multiple videos, absorbing valuable insights, and suddenly realizing we've stumbled upon a gem of information. The only hitch? We can't recall where it was in the video. Cue the frustrating hunt through endless playback.

★ The Solution:
Introducing my YouTube Timestamp Bookmark Extension – your shortcut to hassle-free video bookmarking. Say goodbye to endless scrolling and searching. With a simple click on the "Bookmark Icon" button within the YouTube player, you can instantly mark that crucial moment.

★ Key Features:
- Sync with Google Account: Seamlessly integrate your bookmarks with your Google account, ensuring accessibility across devices and platforms.

- Effortless Search: Easily locate specific bookmarks across all your bookmark videos with an intuitive search function.

- Customization: Personalize your bookmarks by giving them custom names. No more generic timestamps – now you'll know exactly what each bookmark represents. or you can omit

★ What Sets Me Apart:
My commitment to continuous improvement means that I'm open to your feedback and suggestions. Your support fuels my development, and I'm dedicated to enhancing your YouTube experience.

★ Stay Tuned:
As interest in my extension grows, I have exciting plans for additional features. Your valuable feedback will help shape the future of this tool, so join me on this journey.

Don't let those enlightening YouTube moments slip through the cracks. Try my YouTube Timestamp Bookmark Extension today and unlock a more organized, efficient way to revisit your favorite video insights.

Disclaimer: I didn't own any icons used in this extension, I used lordicon for this.                    

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

ชื่อ Youtube Timestamp Saver Youtube Timestamp Saver
ID jgpohngnpocbajdlifenebpifdhbkloj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-timestamp-saver/jgpohngnpocbajdlifenebpifdhbkloj
คำอธิบาย It helps you save timestamps in Youtube videos
ขนาดไฟล์ 55.04 KB
จำนวนการติดตั้ง 222
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2023-09-28
วันที่เผยแพร่ 2023-09-28
คะแนน 4.85/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Asfand Saddiqui
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp Saver",
    "version": "0.1.0",
    "description": "It helps you save timestamps in Youtube videos",
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "*.html",
                "assets\/bookmark.png",
                "assets\/bookmark.gif",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png",
            "128": "assets\/delete.png"
        },
        "default_title": "My Youtube Bookmarks",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}