Image extraction

Displays a list of the images used on the website.

Что такое Image extraction?

Image extraction - это расширение Chrome, разработанное sato.magicword, и его основная функция - "Displays a list of the images used on the website.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Image extraction

Скачайте файлы расширений Image extraction в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Displays a list of the images used on the website.
The images loaded with "" or "css:background" are the target of the list.

ウェブサイトで使用されている画像のリストを表示します。
「」または「css:background」で読み込まれた画像が対象です。
ウェブ上の画像を保存するのに最適です。                    

Основная информация о расширении

Название Image extraction Image extraction
ID ceopbbecmahcocdoeadpakgmhmgjhaae
Официальный URL https://chrome.google.com/webstore/detail/image-extraction/ceopbbecmahcocdoeadpakgmhmgjhaae
Описание Displays a list of the images used on the website.
Размер файла 8.81 KB
Количество установок 117
Текущая Версия 1.0.00.0000
Последнее Обновление 2020-05-19
Дата публикации 2020-05-19
Разработчик sato.magicword
Тип оплаты free
Официальный сайт расширения https://kaminarimagazine.com/
Поддерживаемые языки ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image extraction",
    "description": "Displays a list of the images used on the website.",
    "short_name": "Img ex",
    "version": "1.0.00.0000",
    "author": "Shinji Sato",
    "homepage_url": "https:\/\/kaminarimagazine.com\/",
    "icons": {
        "16": "image\/icon-16x16.png",
        "48": "image\/icon-48x48.png",
        "128": "image\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "image\/icon-19x19.png"
        },
        "default_title": "Image List"
    },
    "permissions": [
        "tabs",
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}