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. 擴展基本資訊
| 名稱 | |
| ID | akgbekdpgegfglbmldaljbeihfcgbofl |
| 官方網址 | 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"
} | |