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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |