Awesome ScreenShot YouTube
Take a screenshot of any YouTube video with one click.
ما هو Awesome ScreenShot YouTube؟
Awesome ScreenShot YouTube هو إضافة Chrome تم تطويرها بواسطة Magic Dev، والميزة الرئيسية لها هي "Take a screenshot of any YouTube video with one click.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Awesome ScreenShot YouTube
قم بتنزيل ملفات الامتداد Awesome ScreenShot YouTube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file.
Click on the "o" button to take a screenshot. معلومات أساسية عن التمديد
| الاسم | |
| ID | igpogmdknpofhifbnhgeniljfoebfene |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene |
| الوصف | Take a screenshot of any YouTube video with one click. |
| حجم الملف | 18.79 KB |
| عدد التثبيتات | 35 |
| النسخة الحالية | 1.0.3 |
| آخر تحديث | 2022-02-05 |
| تاريخ النشر | 2021-11-26 |
| المطور | Magic Dev |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Awesome ScreenShot YouTube",
"version": "1.0.3",
"description": "Take a screenshot of any YouTube video with one click.",
"icons": {
"128": "\/images\/128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"images\/*"
],
"permissions": [
"https:\/\/www.youtube.com\/*",
"webNavigation"
]
} | |