Drag image To Save

Drag an image to save it

Was ist Drag image To Save?

Drag image To Save ist eine Chrome-Erweiterung, die von Bnk entwickelt wurde, und ihr Hauptmerkmal ist "Drag an image to save it".

Erweiterungsscreenshots

screenshot

Drag image To Save-Erweiterungs-CRX-Datei herunterladen

Laden Sie Drag image To Save-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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"
-----------------------------------------------------                    

Grundlegende Informationen zur Erweiterung

Name Drag image To Save Drag image To Save
ID jlepofnflidkndofkhhbalmmijnlpkpl
Offizielle URL https://chromewebstore.google.com/detail/drag-image-to-save/jlepofnflidkndofkhhbalmmijnlpkpl
Beschreibung Drag an image to save it
Dateigröße 24.53 KB
Installationsanzahl 9,911
Aktuelle Version 1.0.1.1
Letztes Update 2024-02-11
Veröffentlichungsdatum 2017-03-15
Bewertung 3.87/5 Insgesamt 85 Bewertungen
Entwickler Bnk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://openinfirefox.wixsite.com/openinfirefox/dragimagetosave
Unterstützte Sprachen 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\/"
    ]
}