Pinterest Image Downloader
Adds download button to each Pinterest image
什么是Pinterest Image Downloader?
Pinterest Image Downloader是由Vanyo Vanev开发的Chrome扩展程序,该扩展的主要功能是“Adds download button to each Pinterest image”。
扩展截图
下载Pinterest Image Downloader扩展crx文件
下载Pinterest Image Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension makes easy to download Pinterest images. The extenstion will look up for the highest available size of the image (the original size) and add a download button at the left top angle of each pin.
扩展基本信息
名称 | |
ID | elnfnoljjefjnldjoilgomncnccjbgaa |
官方URL | https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa |
简介 | Adds download button to each Pinterest image |
文件大小 | 55.9 KB |
安装次数 | 8,000 |
当前版本 | 1.3 |
更新时间 | 2020-10-26 |
上架时间 | 2020-10-03 |
评分 | 2.68/5 共19次评分 |
开发者 | Vanyo Vanev |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pinterest Image Downloader", "short_name": "Pin Downloader", "version": "1.3", "description": "Adds download button to each Pinterest image", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "app.js" ], "persistent": true }, "browser_action": { "default_popup": "background.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.pinterest.com\/*" ], "js": [ "jquery-3.5.1.min.js", "downloader.js" ], "run_at": "document_end", "css": [ "downloader.css" ] } ], "manifest_version": 2 } |