Youtube Time Marks
Reads Youtube description and creates video time marks.
ما هو Youtube Time Marks؟
Youtube Time Marks هو إضافة Chrome تم تطويرها بواسطة RepoGamesStudio، والميزة الرئيسية لها هي "Reads Youtube description and creates video time marks.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Time Marks
قم بتنزيل ملفات الامتداد Youtube Time Marks بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Usable mostly to long youtube interviews It reads description in the following format: 00:00:00 desc1 00:01:34 desc2 00:01:47 desc3 00:02:44 desc4 ... and creates time marks automatically.
معلومات أساسية عن التمديد
الاسم | |
ID | pphlndhfdfilkemppecnknkefjoolibp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp |
الوصف | Reads Youtube description and creates video time marks. |
حجم الملف | 12.05 KB |
عدد التثبيتات | 11 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2018-06-30 |
تاريخ النشر | 2018-06-30 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | RepoGamesStudio |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.facebook.com/RepoGames/ |
عنوان صفحة المساعدة | https://www.facebook.com/RepoGames/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Time Marks", "version": "0.0.3", "description": "Reads Youtube description and creates video time marks.", "manifest_version": 2, "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*" ], "js": [ "main.js" ], "run_at": "document_idle", "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |