Artemiss - Image downloader

The fastest way to download images from the web

O que é Artemiss - Image downloader?

Artemiss - Image downloader é uma extensão do Chrome desenvolvida por Artemiss, e sua principal característica é "The fastest way to download images from the web".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Artemiss - Image downloader

Baixe arquivos de extensão Artemiss - Image downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Artemiss - Image downloader Artemiss - Image downloader
ID kfjokghfahemfimokifapclkgcdbopfb
URL Oficial https://chromewebstore.google.com/detail/artemiss-image-downloader/kfjokghfahemfimokifapclkgcdbopfb
Descrição The fastest way to download images from the web
Tamanho do Arquivo 93.7 KB
Contagem de Instalações 27
Versão Atual 1.2.8
Última Atualização 2023-12-24
Data de Publicação 2020-02-02
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Artemiss
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://artemissdev.wordpress.com/2023/12/23/privacy-policy
Idiomas Suportados 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"
        }
    }
}