YouTube Screenshot
Save Take screenshots from YouTube video
ما هو YouTube Screenshot؟
YouTube Screenshot هو إضافة Chrome تم تطويرها بواسطة info، والميزة الرئيسية لها هي "Save Take screenshots from YouTube video".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Screenshot
قم بتنزيل ملفات الامتداد YouTube Screenshot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A small add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
معلومات أساسية عن التمديد
الاسم | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
الوصف | Save Take screenshots from YouTube video |
حجم الملف | 164 KB |
عدد التثبيتات | 230 |
النسخة الحالية | 2.0.0 |
آخر تحديث | 2022-12-05 |
تاريخ النشر | 2022-12-05 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | info |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |