YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
ما هو YouTube Timestamp Bookmarker - Gravitate Webs؟
YouTube Timestamp Bookmarker - Gravitate Webs هو إضافة Chrome تم تطويرها بواسطة gravitatewebs، والميزة الرئيسية لها هي "Saving timestamps in YouTube videos".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Timestamp Bookmarker - Gravitate Webs
قم بتنزيل ملفات الامتداد YouTube Timestamp Bookmarker - Gravitate Webs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
معلومات أساسية عن التمديد
الاسم | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
الوصف | Saving timestamps in YouTube videos |
حجم الملف | 138 KB |
عدد التثبيتات | 31 |
النسخة الحالية | 0.1.0.0 |
آخر تحديث | 2022-06-08 |
تاريخ النشر | 2022-06-07 |
المطور | gravitatewebs |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://gravitatewebs.com/ |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.1.0.0", "description": "Saving timestamps in YouTube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "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" }, "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |