Photo Downloader

Save images from social photo sites.

Photo Downloaderคืออะไร?

Photo Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mihai Parparita และคุณลักษณะหลักของมันคือ "Save images from social photo sites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Photo Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Photo Downloader Photo Downloader
ID akgbekdpgegfglbmldaljbeihfcgbofl
URL อย่างเป็นทางการ 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"
}