Nexus Mod Image Downloader

Chrome extension for downloading image from nexus mods provided by mod author

¿Qué es Nexus Mod Image Downloader?

Nexus Mod Image Downloader es una extensión de Chrome desarrollada por lazytwinkletoes, y su función principal es "Chrome extension for downloading image from nexus mods provided by mod author".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Nexus Mod Image Downloader

Descarga archivos de extensión Nexus Mod 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

                        There any many mods of nexusmods with very pretty screenshot and I sometimes want to scroll through them, but they load very slowly for me. So I made an extension that will download all the the mod images so I can see them in my favorite image viewer thought any loading time.
This extension is open source, see source code here https://github.com/lazytwinkletoes/nexus-mod-image-downloader                    

Información Básica de la Extensión

Nombre Nexus Mod Image Downloader Nexus Mod Image Downloader
ID lejfohapodmjalgbmckfhicibabbbggl
URL Oficial https://chromewebstore.google.com/detail/nexus-mod-image-downloade/lejfohapodmjalgbmckfhicibabbbggl
Descripción Chrome extension for downloading image from nexus mods provided by mod author
Tamaño del Archivo 35.7 KB
Cantidad de Instalaciones 135
Versión Actual 0.1.0
Última Actualización 2022-05-19
Fecha de Publicación 2022-05-04
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador lazytwinkletoes
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Nexus Mod Image Downloader",
    "description": "Chrome extension for downloading image from nexus mods provided by mod author",
    "version": "0.1.0",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "options_page": "settings\/settings.html",
    "action": {
        "default_title": "Chrome Addon v3 Starter",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/www.nexusmods.com\/*"
            ]
        }
    ]
}