Pinterest Image Downloader

Adds download button to each Pinterest image

Pinterest Image Downloader क्या है?

Pinterest Image Downloader Vanyo Vanev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds download button to each Pinterest image"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Pinterest Image Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}