Baba Image Downloader

Download product images and videos from Chinese ecommerce

Baba Image Downloaderคืออะไร?

Baba Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย todd และคุณลักษณะหลักของมันคือ "Download product images and videos from Chinese ecommerce"

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

screenshot
screenshot

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

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

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

                        A free extension to help you download main, variant and description images & videos from Chinese ecommerce websites such as alibaba.com and aliexpress.com

- You can click on the icons that will show up on the page, or you can download using the buttons in the popup.

- The images will be saved as a zip on your computer.

- You can also download the description text.

We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Alibaba Group, or any of its subsidiaries or its affiliates.                    

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

ชื่อ Baba Image Downloader Baba Image Downloader
ID ignkhlhlaoifkkgfojaefffeomlhamha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/baba-image-downloader/ignkhlhlaoifkkgfojaefffeomlhamha
คำอธิบาย Download product images and videos from Chinese ecommerce
ขนาดไฟล์ 241 KB
จำนวนการติดตั้ง 3,659
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2024-01-02
วันที่เผยแพร่ 2020-10-09
คะแนน 4.27/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา todd
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Download product images and videos from Chinese ecommerce",
    "version": "1.2.2",
    "name": "Baba Image Downloader",
    "permissions": [
        "storage",
        "activeTab",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.alibaba.com\/",
        "*:\/\/*.alicdn.com\/",
        "*:\/\/*.aliexpress-media.com\/",
        "*:\/\/*.aliexpress.com\/",
        "*:\/\/*.aliexpress.ru\/"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.alibaba.com\/product-detail\/*",
                "*:\/\/*.alibaba.com\/product\/*",
                "*:\/\/*.alibaba.com\/cps\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "inject.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/item\/*",
                "*:\/\/*.aliexpress.com\/store\/product\/*",
                "*:\/\/*.aliexpress.ru\/item\/*",
                "*:\/\/*.aliexpress.ru\/store\/product\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "inject2.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "*.png",
                "*.ttf",
                "*.gif",
                "*.svg"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*",
                "*:\/\/*.alibaba.com\/*"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules-1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}