Download Image from Context Menu
Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.
What is Download Image from Context Menu?
Download Image from Context Menu is a Chrome extension developed by Erisa A, and its main feature is "Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.".
Extension Screenshots
Download Download Image from Context Menu Extension CRX File
Download Download Image from Context Menu 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 extension simply adds a context menu item which allows you to (Directly) download an image. The simple idea for this extension was born from saving multiple images at once, and rapidly pressing enter after each save to go through the "Save as" prompt.
Extension Basic Information
Name | Download Image from Context Menu |
ID | fihdnfkfpjmipmlggdknalpfjjnjbboj |
Official URL | https://chromewebstore.google.com/detail/download-image-from-conte/fihdnfkfpjmipmlggdknalpfjjnjbboj |
Description | Adds a context (Right click) menu item to images which allows you to directly download them without a prompt. |
File Size | 29.35 KB |
Installation Count | 776 |
Current Version | 1.0.7 |
Last Updated | 2022-08-05 |
Publish Date | 2020-06-14 |
Rating | 4.33/5 Total 6 Ratings |
Developer | Erisa A |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Erisa/download-image |
Help Page URL | https://github.com/Erisa/download-image |
Privacy Policy Page URL | https://erisa.uk/privacy |
Supported Languages | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Download Image from Context Menu", "description": "Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.", "version": "1.0.7", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "contextMenus", "downloads", "storage" ], "browser_specific_settings": { "gecko": { "id": "{5ff1cbc2-229c-4f3f-ac0e-884fbc12670b}", "strict_min_version": "56.0" } }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png" } } |