Artemiss - Image downloader

The fastest way to download images from the web

Cos'è Artemiss - Image downloader?

Artemiss - Image downloader è un'estensione di Chrome sviluppata da Artemiss, e la sua funzione principale è "The fastest way to download images from the web".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Artemiss - Image downloader

Scarica i file di estensione Artemiss - Image downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Hit Alt + A to download all images.

Please refresh the page when you download images for the first time after installing Artemiss.

Also, please make sure that the Chrome downloads setting "Ask where to save each file before downloading" is turned off. Otherwise, the Save As dialog box may pop up for each download.

Select a group or individual images from the list of images found.
Download images with or without order by toggling the relevant option.
Auto open the folder as soon as downloads are complete and check your images.

The following permissions are required:

"downloads" 
- required to save image files on your local computer
"storage"
- required to save the extension settings on your local computer
"*://*/*"
- required to find images on any http and https pages                    

Informazioni di Base sull'Estensione

Nome Artemiss - Image downloader Artemiss - Image downloader
ID kfjokghfahemfimokifapclkgcdbopfb
URL Ufficiale https://chromewebstore.google.com/detail/artemiss-image-downloader/kfjokghfahemfimokifapclkgcdbopfb
Descrizione The fastest way to download images from the web
Dimensione del File 93.7 KB
Conteggio Installazioni 27
Versione Corrente 1.2.8
Ultimo Aggiornamento 2023-12-24
Data di Pubblicazione 2020-02-02
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Artemiss
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://artemissdev.wordpress.com/2023/12/23/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Artemiss - Image downloader",
    "version": "1.2.8",
    "description": "The fastest way to download images from the web",
    "manifest_version": 3,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArWmqZsj2GA+\/xiaf6ln8fybxfWTI6H6behZRL9miWjQaQ7CqzxhUkum3\/jem5bLVajWCb1aaabvNv4npyj2y50cXqokYbiByXg+DIjJP9cLnUzjXsyxqj+ZhuIdsvefEZ7xkzXEgsC2\/SOrlXpfSEjuQ6JYZrMe3RgVaGoZDoPP58fs+gVyUP6c4HMKZe43hBxRFFJvPQX4bZA2hGqSXz2Z4LTXNYZgMi782apbVDDveeXX6QK2lU+zGDqhwwDsPVEetlkC7oOysrqWshk2B\/2ctc4NXigCAxDySASOhuWQhicc\/5QZfrZ++fF8F0JRRaiyhHpSZnOPt4fqvJVhN2QIDAQAB",
    "permissions": [
        "downloads",
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/contentScript.css"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "16": "img\/default_icon.png",
            "24": "img\/default_icon.png",
            "32": "img\/default_icon.png"
        },
        "default_title": "Artemiss"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "html\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Run Artemiss"
        }
    }
}