500px Image Download

Download the image from 500px.com

500px Image Downloadคืออะไร?

500px Image Download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hurbaroh และคุณลักษณะหลักของมันคือ "Download the image from 500px.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 500px Image Download

ดาวน์โหลดไฟล์ส่วนขยาย 500px Image Download ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        One click image download from 500px.com!

Simple click on image that you like and then click this extension button. It will download image and name it whatever the title is in 500px.com.

Updated the extension, now you will see download button in bottom right corner of every image. You can click that button as well to download image. Clicking extension will still download image as well.

Let me know if you have other suggestions or concerns.
 
Just go to website, click on image that you like and click this extension button or download button attached to bottom right corner of image. It will download image directly to your downloads folder, naming it with image title name. It is that simple.

The extension allows user to download image with a single click from 500px.com, a website that contains professional photos from all around the world. The extension only requires permission for active tab and download. The active tab is to be able to capture the current image and download permission will allow extension to automatically save images to users device. It only download images from the website and nothing else. It downloads image in fixed .jpeg format only for now.

Please let me know if you have any feedback.                    

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

ชื่อ 500px Image Download 500px Image Download
ID pmpnlgmogbfelnhbjmjgdclgpmjkhgjp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/500px-image-download/pmpnlgmogbfelnhbjmjgdclgpmjkhgjp
คำอธิบาย Download the image from 500px.com
ขนาดไฟล์ 22.58 KB
จำนวนการติดตั้ง 12,463
เวอร์ชันปัจจุบัน 2.2.1
อัปเดตครั้งล่าสุด 2021-09-07
วันที่เผยแพร่ 2020-06-16
คะแนน 3.95/5 รวมทั้งหมด 38 คะแนน
ผู้พัฒนา hurbaroh
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,tr,es,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "500px Image Download",
    "description": "Download the image from 500px.com",
    "default_locale": "en",
    "version": "2.2.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Download this photo"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/500px.com\/*",
                "https:\/\/*.500px.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}