Photo Downloader
Save images from social photo sites.
Hvad er Photo Downloader?
Photo Downloader er en Chrome-udvidelse udviklet af Mihai Parparita, og dens hovedfunktion er "Save images from social photo sites.".
Udvidelsesskærmbilleder
Download Photo Downloader-udvidelses-CRX-fil
Download Photo Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | akgbekdpgegfglbmldaljbeihfcgbofl |
| Officiel URL | https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl |
| Beskrivelse | Save images from social photo sites. |
| Filstørrelse | 12.23 KB |
| Antal Installationer | 5,372 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2023-07-20 |
| Udgivelsesdato | 2018-01-29 |
| Bedømmelse | 2.00/5 Samlet 5 Bedømmelser |
| Udvikler | Mihai Parparita |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/mihaip/instagram-downloader |
| Understøttede Sprog | 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"
} | |