Youtube Timestamp Bookmarker

Bookmark the timestamp of a YouTube video to watch later

ما هو Youtube Timestamp Bookmarker؟

Youtube Timestamp Bookmarker هو إضافة Chrome تم تطويرها بواسطة Forever Impulse Tech، والميزة الرئيسية لها هي "Bookmark the timestamp of a YouTube video to watch later".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Youtube Timestamp Bookmarker

قم بتنزيل ملفات الامتداد Youtube Timestamp Bookmarker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension allows you to bookmark the timestamp of any YouTube video with one click. View your bookmarked YouTube videos by clicking the links in the extensions' pop-up window.

This will save you the time and effort of having to remember where you stopped watching a video. 

Features: 
- Search bar
- Update video titles
- Sort by favorited videos and date
- Light and dark mode toggle
- Remove single or multiple videos from bookmark

More features on the way!                    

معلومات أساسية عن التمديد

الاسم Youtube Timestamp Bookmarker Youtube Timestamp Bookmarker
ID hdpcgcongdbbalkpifkdgmgifnoiddck
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/hdpcgcongdbbalkpifkdgmgifnoiddck
الوصف Bookmark the timestamp of a YouTube video to watch later
حجم الملف 27.81 KB
عدد التثبيتات 722
النسخة الحالية 2.1.2
آخر تحديث 2022-11-17
تاريخ النشر 2022-04-14
تقييم 4.75/5 مجموع تقييمات 4
المطور Forever Impulse Tech
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp Bookmarker",
    "description": "Bookmark the timestamp of a YouTube video to watch later",
    "version": "2.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ytb_icon.png",
            "32": "\/images\/ytb_icon.png",
            "48": "\/images\/ytb_icon.png",
            "128": "\/images\/ytb_icon.png"
        }
    },
    "icons": {
        "16": "\/images\/ytb_icon.png",
        "32": "\/images\/ytb_icon.png",
        "48": "\/images\/ytb_icon.png",
        "128": "\/images\/ytb_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "options.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/bookmark.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}