Youtube Timestamp
Save youtube videos with exact timestamps for later.
ما هو Youtube Timestamp؟
Youtube Timestamp هو إضافة Chrome تم تطويرها بواسطة kirill17910، والميزة الرئيسية لها هي "Save youtube videos with exact timestamps for later.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Timestamp
قم بتنزيل ملفات الامتداد Youtube Timestamp بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them. This is an open source project, and all source code can be found on GitHub. https://github.com/kotikkir9/Youtube Changes: 27/12/2022 - Added new animated delete button.
معلومات أساسية عن التمديد
الاسم | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
الوصف | Save youtube videos with exact timestamps for later. |
حجم الملف | 11.57 KB |
عدد التثبيتات | 179 |
النسخة الحالية | 1.1 |
آخر تحديث | 2022-12-28 |
تاريخ النشر | 2022-05-24 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | kirill17910 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/kotikkir9/Youtube |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp", "description": "Save youtube videos with exact timestamps for later.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": ".\/src\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" } }, "icons": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |