Ledavio Image Importer

This extension imports images into Ledavio moodboards

Что такое Ledavio Image Importer?

Ledavio Image Importer - это расширение Chrome, разработанное https://www.ledavio.design, и его основная функция - "This extension imports images into Ledavio moodboards".

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

screenshot
screenshot

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

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

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

                        If you are using Ledavio (www.ledavio.design) for creating mood boards, you can use this extension to directly import all images from any website into your mood boards. After installing, you just login into your Ledavio account by clicking on the Ledavio logo in the Chrome extension bar (right beside the URL input bar). After choosing a default board images can be inserted via the context menu (right click on the image).                    

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

Название Ledavio Image Importer Ledavio Image Importer
ID nimlecnggbdphegpojjbilocfeonnenl
Официальный URL https://chrome.google.com/webstore/detail/ledavio-image-importer/nimlecnggbdphegpojjbilocfeonnenl
Описание This extension imports images into Ledavio moodboards
Размер файла 58.82 KB
Количество установок 34
Текущая Версия 1.2.0
Последнее Обновление 2020-07-09
Дата публикации 2019-04-02
Разработчик https://www.ledavio.design
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://ledavio.design/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ledavio Image Importer",
    "version": "1.2.0",
    "description": "This extension imports images into Ledavio moodboards",
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "contextMenus",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "config.js",
            "background.js"
        ]
    }
}