Gyazo Download
Add a download button to Gyazo images
ما هو Gyazo Download؟
Gyazo Download هو إضافة Chrome تم تطويرها بواسطة RostiMelk، والميزة الرئيسية لها هي "Add a download button to Gyazo images".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gyazo Download
قم بتنزيل ملفات الامتداد Gyazo Download بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension simplifies the process of downloading your Gyazo images and videos. With a new download button added to all assets, you can now easily download them with just one click, saving you time and hassle. Whether you use Gyazo for work or personal projects, this feature is a useful addition that streamlines your workflow.
معلومات أساسية عن التمديد
الاسم | Gyazo Download |
ID | ibhpaofljfiopjggpgmfmhjempjhffjb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb |
الوصف | Add a download button to Gyazo images |
حجم الملف | 28.31 KB |
عدد التثبيتات | 121 |
النسخة الحالية | 1.0 |
آخر تحديث | 2023-02-22 |
تاريخ النشر | 2023-02-22 |
المطور | RostiMelk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/RostiMelk/gyazo-download |
عنوان صفحة المساعدة | https://github.com/RostiMelk/gyazo-download/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gyazo Download", "description": "Add a download button to Gyazo images", "version": "1.0", "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "content_scripts": [ { "matches": [ "https:\/\/gyazo.com\/*" ], "js": [ "js\/content_script.js" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "downloads" ], "host_permissions": [ "https:\/\/gyazo.com\/*" ] } |