Drag image To Save

Drag an image to save it

Что такое Drag image To Save?

Drag image To Save - это расширение Chrome, разработанное Bnk, и его основная функция - "Drag an image to save it".

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

screenshot

Скачать файл CRX расширения Drag image To Save

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

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

                        Just drag it!
-----------------------------------------------------
Easiest way to save a picture!!!!
Easy On/Off!
This extension is given as a tribute rather than for profit, so enjoy it.
-----------------------------------------------------
behavior
* You can choose where to save it  OR  use chrome's default download location
* Note: linked images (i.e. an image that when you press it a link is opened) have a default chrome behaviour when you drag it (open the link). If you want to save the pic, you have to right click it, select 'open image in new tab' and then drag the image on the new tab). This is done to avoid changing chrome's default behaviour.
-----------------------------------------------------
Chrome's download location option is in: 
     Settings->Advanced->Downloads 
     Check -> "Ask where to save each file before downloading"
-----------------------------------------------------                    

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

Название Drag image To Save Drag image To Save
ID jlepofnflidkndofkhhbalmmijnlpkpl
Официальный URL https://chromewebstore.google.com/detail/drag-image-to-save/jlepofnflidkndofkhhbalmmijnlpkpl
Описание Drag an image to save it
Размер файла 24.53 KB
Количество установок 9,911
Текущая Версия 1.0.1.1
Последнее Обновление 2024-02-11
Дата публикации 2017-03-15
Рейтинг 3.87/5 Всего 85 оценок
Разработчик Bnk
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://openinfirefox.wixsite.com/openinfirefox/dragimagetosave
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Drag image To Save",
    "description": "Drag an image to save it",
    "version": "1.0.1.1",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "38": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "content_security_policy": [],
    "host_permissions": [
        "https:\/\/www.google-analytics.com\/"
    ]
}