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 |
官方網址 | 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 } |