Image Downloader

Download any image on your website page in one click!

Image Downloader क्या है?

Image Downloader tiffanycheck.check द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download any image on your website page in one click!"।

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

screenshot
screenshot

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

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

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

                        The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP                    

एक्सटेंशन की मूल जानकारी

नाम Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
आधिकारिक URL https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
विवरण Download any image on your website page in one click!
फ़ाइल का आकार 19.54 KB
स्थापना संख्या 3,519
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-12-05
प्रकाशन तिथि 2022-11-28
डेवलपर tiffanycheck.check
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://home.xcxologyda.xyz/
सहायता पृष्ठ URL https://home.xcxologyda.xyz/contact.html
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Image Downloader",
        "default_popup": "popup.html"
    },
    "description": "Download any image on your website page in one click!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Image Downloader",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}