image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
什么是image-downloader?
image-downloader是由joshua.lin870903开发的Chrome扩展程序,该扩展的主要功能是“A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.”。
扩展截图
下载image-downloader扩展crx文件
下载image-downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
官方URL | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
简介 | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
文件大小 | 20.77 KB |
安装次数 | 39 |
当前版本 | 0.2.11 |
更新时间 | 2019-09-10 |
上架时间 | 2019-09-10 |
开发者 | joshua.lin870903 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/JoshuaLin0903/image-downloader |
支持的语言 | 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" } } |