TubeMark
Bookmark and take notes on YouTube timeline.
ما هو TubeMark؟
TubeMark هو إضافة Chrome تم تطويرها بواسطة chaosifier، والميزة الرئيسية لها هي "Bookmark and take notes on YouTube timeline.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TubeMark
قم بتنزيل ملفات الامتداد TubeMark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.
معلومات أساسية عن التمديد
الاسم | |
ID | lhpnjmlibhnkegajheajbkcmdjglaljo |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo |
الوصف | Bookmark and take notes on YouTube timeline. |
حجم الملف | 91.5 KB |
عدد التثبيتات | 22 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2020-11-17 |
تاريخ النشر | 2020-11-13 |
تقييم | 3.25/5 مجموع تقييمات 4 |
المطور | chaosifier |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/chaosifier/TubeMark |
عنوان صفحة المساعدة | https://github.com/chaosifier/TubeMark/issues |
عنوان صفحة سياسة الخصوصية | https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TubeMark", "description": "Bookmark and take notes on YouTube timeline.", "version": "1.0.1", "author": "Sagar Dahal", "browser_action": { "default_icon": "ic_launcher.png", "default_title": "TubeMark" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "256": "ic_launcher.png" }, "web_accessible_resources": [ "mainPage.html" ] } |