Artemiss - Image downloader

The fastest way to download images from the web

什么是Artemiss - Image downloader?

Artemiss - Image downloader是由Artemiss开发的Chrome扩展程序,该扩展的主要功能是“The fastest way to download images from the web”。

扩展截图

screenshot
screenshot

下载Artemiss - Image downloader扩展crx文件

下载Artemiss - Image downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Artemiss - Image downloader Artemiss - Image downloader
ID kfjokghfahemfimokifapclkgcdbopfb
官方URL https://chromewebstore.google.com/detail/artemiss-image-downloader/kfjokghfahemfimokifapclkgcdbopfb
简介 The fastest way to download images from the web
文件大小 93.7 KB
安装次数 27
当前版本 1.2.8
更新时间 2023-12-24
上架时间 2020-02-02
评分 3.00/5 共2次评分
开发者 Artemiss
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://artemissdev.wordpress.com/2023/12/23/privacy-policy
支持的语言 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"
        }
    }
}