Photo Downloader

Save images from social photo sites.

What is Photo Downloader?

Photo Downloader is a Chrome extension developed by Mihai Parparita, and its main feature is "Save images from social photo sites.".

Extension Screenshots

screenshot

Download Photo Downloader Extension CRX File

Download Photo Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
Official URL https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl
Description Save images from social photo sites.
File Size 12.23 KB
Installation Count 5,372
Current Version 1.1
Last Updated 2023-07-20
Publish Date 2018-01-29
Rating 2.00/5 Total 5 Ratings
Developer Mihai Parparita
Email [email protected]
Payment Type free
Extension Website https://github.com/mihaip/instagram-downloader
Supported Languages 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"
}