Image Download
This extension allows you to download images with one click, directly to your download folder.
O que é Image Download?
Image Download é uma extensão do Chrome desenvolvida por https://www.xn--fundstcke-im-netz-72b.de, e sua principal característica é "This extension allows you to download images with one click, directly to your download folder.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Image Download
Baixe arquivos de extensão Image Download no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension adds a small icon to every picture while hovering over it. When you click on that icon the picture is downloaded directly to your download folder. You will never be asked again where you want to save the picture. If you want to get in touch, please join the Google+ Community Image Download. (https://plus.google.com/u/0/communities/109075059138445967727) Attention: The extension is in an early development state, there are some features to come and not everything is working perfect. If you have any tips or questions don't hesitate to contact us.
Informações Básicas da Extensão
Nome | Image Download |
ID | pianibmfifkeamgfggpkkanjdcoppgch |
URL Oficial | https://chromewebstore.google.com/detail/image-download/pianibmfifkeamgfggpkkanjdcoppgch |
Descrição | This extension allows you to download images with one click, directly to your download folder. |
Tamanho do Arquivo | 86.52 KB |
Contagem de Instalações | 3,435 |
Versão Atual | 1.4.0 |
Última Atualização | 2016-02-08 |
Data de Publicação | 2016-02-08 |
Classificação | 3.15/5 Total de 68 Avaliações |
Desenvolvedor | https://www.xn--fundstcke-im-netz-72b.de |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image Download", "description": "This extension allows you to download images with one click, directly to your download folder.", "version": "1.4.0", "icons": { "128": "image_download_128.png" }, "author": "Kevin B.", "permissions": [ "storage", "downloads" ], "browser_action": { "default_icon": "action-on.png" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery.js", "content.js", "mutation-summary.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "save_64.png", "page.css" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |