image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
What is image-downloader?
image-downloader is a Chrome extension developed by joshua.lin870903, and its main feature is "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".
Extension Screenshots
Download image-downloader Extension CRX File
Download image-downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
Official URL | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
Description | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
File Size | 20.77 KB |
Installation Count | 39 |
Current Version | 0.2.11 |
Last Updated | 2019-09-10 |
Publish Date | 2019-09-10 |
Developer | joshua.lin870903 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JoshuaLin0903/image-downloader |
Supported Languages | 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" } } |