Pinterest Image Downloader

Adds download button to each Pinterest image

Pinterest Image Downloaderคืออะไร?

Pinterest Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vanyo Vanev และคุณลักษณะหลักของมันคือ "Adds download button to each Pinterest image"

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

screenshot

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

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

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

                        This extension makes easy to download Pinterest images. 
The extenstion will look up for the highest available size of the image (the original size) and add a download button at the left top angle of each pin.                    

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

ชื่อ Pinterest Image Downloader Pinterest Image Downloader
ID elnfnoljjefjnldjoilgomncnccjbgaa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/pinterest-image-downloade/elnfnoljjefjnldjoilgomncnccjbgaa
คำอธิบาย Adds download button to each Pinterest image
ขนาดไฟล์ 55.9 KB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-10-26
วันที่เผยแพร่ 2020-10-03
คะแนน 2.68/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Vanyo Vanev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinterest Image Downloader",
    "short_name": "Pin Downloader",
    "version": "1.3",
    "description": "Adds download button to each Pinterest image",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "background.html"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.pinterest.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "downloader.js"
            ],
            "run_at": "document_end",
            "css": [
                "downloader.css"
            ]
        }
    ],
    "manifest_version": 2
}