YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
ما هو YouTube Timestamper؟
YouTube Timestamper هو إضافة Chrome تم تطويرها بواسطة IAmVisco، والميزة الرئيسية لها هي "Allows you to quickly copy current video/stream timestamp (with offset).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Timestamper
قم بتنزيل ملفات الامتداد YouTube Timestamper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
معلومات أساسية عن التمديد
الاسم | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
الوصف | Allows you to quickly copy current video/stream timestamp (with offset). |
حجم الملف | 16.88 KB |
عدد التثبيتات | 82 |
النسخة الحالية | 1.3.0 |
آخر تحديث | 2023-06-21 |
تاريخ النشر | 2021-05-07 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | IAmVisco |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |