image-downloader

A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.

Was ist image-downloader?

image-downloader ist eine Chrome-Erweiterung, die von joshua.lin870903 entwickelt wurde, und ihr Hauptmerkmal ist "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".

Erweiterungsscreenshots

screenshot

image-downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie image-downloader-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

                        This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.


Other Features:

Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page.

Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images.


Go to "Homepage" for more detail about this addon.                    

Grundlegende Informationen zur Erweiterung

Name image-downloader image-downloader
ID dfddfklkbahiihjnfmpflfblacfjojjl
Offizielle URL https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl
Beschreibung A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
Dateigröße 20.77 KB
Installationsanzahl 39
Aktuelle Version 0.2.11
Letztes Update 2019-09-10
Veröffentlichungsdatum 2019-09-10
Entwickler joshua.lin870903
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/JoshuaLin0903/image-downloader
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "image-downloader",
    "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.",
    "version": "0.2.11",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "downloads",
        "storage",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/menu_info.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    }
}