Photo Downloader

Save images from social photo sites.

Photo Downloader là gì?

Photo Downloader là một tiện ích mở rộng Chrome được phát triển bởi Mihai Parparita, và tính năng chính của nó là "Save images from social photo sites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Photo Downloader

Tải xuống các tệp mở rộng Photo Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
URL Chính Thức https://chromewebstore.google.com/detail/photo-downloader/akgbekdpgegfglbmldaljbeihfcgbofl
Mô tả Save images from social photo sites.
Kích Thước Tệp 12.23 KB
Số Lần Cài Đặt 5,372
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-07-20
Ngày Phát Hành 2018-01-29
Đánh Giá 2.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Mihai Parparita
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mihaip/instagram-downloader
Ngôn Ngữ Được Hỗ Trợ 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"
}