One Click Image Downloader

Adds download buttons to images on a web page.

Τι είναι το One Click Image Downloader;

Το One Click Image Downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Licua, και η κύρια λειτουργία του είναι "Adds download buttons to images on a web page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης One Click Image Downloader

Λήψη αρχείων επέκτασης One Click Image Downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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'"
}