image-downloader

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

¿Qué es image-downloader?

image-downloader es una extensión de Chrome desarrollada por joshua.lin870903, y su función principal es "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión image-downloader

Descarga archivos de extensión image-downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre image-downloader image-downloader
ID dfddfklkbahiihjnfmpflfblacfjojjl
URL Oficial https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl
Descripción A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
Tamaño del Archivo 20.77 KB
Cantidad de Instalaciones 39
Versión Actual 0.2.11
Última Actualización 2019-09-10
Fecha de Publicación 2019-09-10
Desarrollador joshua.lin870903
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/JoshuaLin0903/image-downloader
Idiomas Soportados 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"
    }
}