Photo Downloader
Save images from social photo sites.
什么是Photo Downloader?
Photo Downloader是由Mihai Parparita开发的Chrome扩展程序,该扩展的主要功能是“Save images from social photo sites.”。
扩展截图
下载Photo Downloader扩展crx文件
下载Photo Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chrome extension to help with downloading of images from social photo sites. * Uses minimal Chrome extension permissions (by using the activeTab option) * Uses minimal Chrome resources (via the the declarativeContent API) * Generates filenames based on the caption of the image Currently only works on permalink pages.
扩展基本信息
名称 | Photo Downloader |
ID | akgbekdpgegfglbmldaljbeihfcgbofl |
官方URL | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
简介 | Save images from social photo sites. |
文件大小 | 12.23 KB |
安装次数 | 5,372 |
当前版本 | 1.1 |
更新时间 | 2023-07-20 |
上架时间 | 2018-01-29 |
评分 | 2.00/5 共5次评分 |
开发者 | Mihai Parparita |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/mihaip/instagram-downloader |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "name": "Photo Downloader", "description": "Save images from social photo sites.", "icons": { "128": "icon-128.png" }, "page_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png" }, "default_title": "Download Image" }, "permissions": [ "declarativeContent", "activeTab", "downloads" ], "version": "1.1" } |