Download Image from Context Menu
Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.
Was ist Download Image from Context Menu?
Download Image from Context Menu ist eine Chrome-Erweiterung, die von Erisa A entwickelt wurde, und ihr Hauptmerkmal ist "Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.".
Erweiterungsscreenshots
Download Image from Context Menu-Erweiterungs-CRX-Datei herunterladen
Laden Sie Download Image from Context Menu-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Download Image from Context Menu |
ID | fihdnfkfpjmipmlggdknalpfjjnjbboj |
Offizielle URL | https://chromewebstore.google.com/detail/download-image-from-conte/fihdnfkfpjmipmlggdknalpfjjnjbboj |
Beschreibung | Adds a context (Right click) menu item to images which allows you to directly download them without a prompt. |
Dateigröße | 29.35 KB |
Installationsanzahl | 776 |
Aktuelle Version | 1.0.7 |
Letztes Update | 2022-08-05 |
Veröffentlichungsdatum | 2020-06-14 |
Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
Entwickler | Erisa A |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Erisa/download-image |
Hilfeseite URL | https://github.com/Erisa/download-image |
URL der Datenschutzrichtlinien-Seite | https://erisa.uk/privacy |
Unterstützte Sprachen | 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" } } |