YouTube Timestamp Comments
An extension that lists timestamp comments on YouTube.
ما هو YouTube Timestamp Comments؟
YouTube Timestamp Comments هو إضافة Chrome تم تطويرها بواسطة Akira Shimizu، والميزة الرئيسية لها هي "An extension that lists timestamp comments on YouTube.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Timestamp Comments
قم بتنزيل ملفات الامتداد YouTube Timestamp Comments بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a Google Chrome extension that displays timestamp comments on YouTube. The main features are: - displays timestamp comments - sorts by timestamp - jumps playback position to timestamp --- YouTube の時間指定コメントを表示する Google Chrome 拡張機能です。主な機能は以下の通りです。 - タイムスタンプを含むコメントを表示 - 時間の早い順にソート - タイムスタンプのクリックで再生位置をジャンプ
معلومات أساسية عن التمديد
الاسم | YouTube Timestamp Comments |
ID | khngjoedfeicfbjlcfmiigbokbnlibei |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-timestamp-comment/khngjoedfeicfbjlcfmiigbokbnlibei |
الوصف | An extension that lists timestamp comments on YouTube. |
حجم الملف | 914 KB |
عدد التثبيتات | 412 |
النسخة الحالية | 0.8.2 |
آخر تحديث | 2022-02-24 |
تاريخ النشر | 2020-07-01 |
تقييم | 4.00/5 مجموع تقييمات 6 |
المطور | Akira Shimizu |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Foo-x/youtube-timestamp-comments |
اللغات المدعومة | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Comments", "version": "0.8.2", "manifest_version": 3, "description": "An extension that lists timestamp comments on YouTube.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "js\/background\/background.js" }, "action": { "default_icon": "icons\/icon19.png", "default_popup": "html\/page_action\/page_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "js\/content_scripts\/contentScript.js" ] } ], "permissions": [ "declarativeContent", "storage", "activeTab", "scripting" ] } |