Caption Generator
Generates a caption for all images based on their alt text, appearing above the image.
ما هو Caption Generator؟
Caption Generator هو إضافة Chrome تم تطويرها بواسطة SalmanMKC - Salman Chishti، والميزة الرئيسية لها هي "Generates a caption for all images based on their alt text, appearing above the image.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Caption Generator
قم بتنزيل ملفات الامتداد Caption Generator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Generates a caption for all images based on their alt text, appearing above the image.
معلومات أساسية عن التمديد
الاسم | Caption Generator |
ID | aijkpgmbgjpjjjejgcehmhfilookleon |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/caption-generator/aijkpgmbgjpjjjejgcehmhfilookleon |
الوصف | Generates a caption for all images based on their alt text, appearing above the image. |
حجم الملف | 34.11 KB |
عدد التثبيتات | 258 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2022-12-28 |
تاريخ النشر | 2022-12-28 |
المطور | SalmanMKC - Salman Chishti |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Caption Generator", "description": "Generates a caption for all images based on their alt text, appearing above the image.", "version": "1.0.1", "icons": { "512": "icon.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "background.js" ] } ], "action": { "default_title": "Click me", "default_icon": { "512": "icon.png" } }, "background": { "service_worker": "background.js" }, "permissions": [ "scripting", "activeTab" ] } |