image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
ما هو image-downloader؟
image-downloader هو إضافة Chrome تم تطويرها بواسطة joshua.lin870903، والميزة الرئيسية لها هي "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة image-downloader
قم بتنزيل ملفات الامتداد image-downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened. Other Features: Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page. Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images. Go to "Homepage" for more detail about this addon.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
الوصف | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
حجم الملف | 20.77 KB |
عدد التثبيتات | 39 |
النسخة الحالية | 0.2.11 |
آخر تحديث | 2019-09-10 |
تاريخ النشر | 2019-09-10 |
المطور | joshua.lin870903 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/JoshuaLin0903/image-downloader |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "image-downloader", "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.", "version": "0.2.11", "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "activeTab", "downloads", "storage", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_scripts\/menu_info.js" ], "all_frames": true } ], "options_ui": { "page": "settings\/options.html" } } |