YouTube Markup
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…
ما هو YouTube Markup؟
YouTube Markup هو إضافة Chrome تم تطويرها بواسطة Umut Korkmaz، والميزة الرئيسية لها هي "You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Markup
قم بتنزيل ملفات الامتداد YouTube Markup بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational video, you can mark the minute where something you are interested in is located, so that you can quickly find what you are looking for when you look at the same educational video again.
معلومات أساسية عن التمديد
الاسم | YouTube Markup |
ID | emhjhcepnjieabmcmioendnlpbbhlnbn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn |
الوصف | You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational… |
حجم الملف | 26.09 KB |
عدد التثبيتات | 46 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2023-03-02 |
تاريخ النشر | 2022-09-06 |
تقييم | 5.00/5 مجموع تقييمات 10 |
المطور | Umut Korkmaz |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/umutkorkmaaz/youtube-marker |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Markup", "version": "1.1.1", "icons": { "16": ".\/assets\/icon\/youtube-markup-16x16.png", "48": ".\/assets\/icon\/youtube-markup-48x48.png", "128": ".\/assets\/icon\/youtube-markup-128x128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": ".\/assets\/js\/background.min.js" }, "action": { "default_title": "YouTube Markup", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ ".\/assets\/js\/content.min.js" ], "css": [ ".\/assets\/css\/all.min.css" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |