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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" } } |