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 |
| Eメール | [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
} | |