Image Download
This extension allows you to download images with one click, directly to your download folder.
什麼是Image Download?
Image Download是由https://www.xn--fundstcke-im-netz-72b.de開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to download images with one click, directly to your download folder.”。
擴展截圖
下載Image Download擴展crx文件
下載Image Download擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Image Download |
ID | pianibmfifkeamgfggpkkanjdcoppgch |
官方網址 | https://chromewebstore.google.com/detail/image-download/pianibmfifkeamgfggpkkanjdcoppgch |
簡介 | This extension allows you to download images with one click, directly to your download folder. |
檔案大小 | 86.52 KB |
安裝次數 | 3,435 |
目前版本 | 1.4.0 |
更新時間 | 2016-02-08 |
上架時間 | 2016-02-08 |
評分 | 3.15/5 共 68 次評分 |
開發者 | https://www.xn--fundstcke-im-netz-72b.de |
付費類型 | free |
支援的語言 | 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'" } |