One Click Image Downloader

Adds download buttons to images on a web page.

One Click Image Downloader क्या है?

One Click Image Downloader Licua द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds download buttons to images on a web page."।

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Adds download buttons to images on a web page.
If there is a link to the original size image, the original size will be downloaded.

■Basic function
- A download button will be displayed in the upper right of the each image.
- You can download the image by clicking the button.

■Additional functions
You can use the following functions from the extension icon in the upper right of the browser.
- Downloads all displayed images at once.
- Automatically scroll the screen and downloads images.

■Note
You may not be able to download images on websites that are not made to be standard.

■Disclaimer
Regarding all obstacles, damages, defects, etc. caused by using this extension, the provider of this extension, the related parties of the provider and any organizations or organizations to which this extension belongs do not assume any responsibility. Please use at your own risk.                    

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

नाम One Click Image Downloader One Click Image Downloader
ID djcobamaplcmhmaocomnkfdbcoiggepo
आधिकारिक URL https://chromewebstore.google.com/detail/one-click-image-downloade/djcobamaplcmhmaocomnkfdbcoiggepo
विवरण Adds download buttons to images on a web page.
फ़ाइल का आकार 229 KB
स्थापना संख्या 25,040
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2021-10-11
प्रकाशन तिथि 2020-07-04
रेटिंग 3.80/5 कुल 90 रेटिंग्स
डेवलपर Licua
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.3.0",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_32.png",
        "default_title": "One Click Image Downloader",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "\/static\/js\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/static\/js\/content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "downloads"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}