Nexus Mod Image Downloader
Chrome extension for downloading image from nexus mods provided by mod author
Cos'è Nexus Mod Image Downloader?
Nexus Mod Image Downloader è un'estensione di Chrome sviluppata da lazytwinkletoes, e la sua funzione principale è "Chrome extension for downloading image from nexus mods provided by mod author".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Nexus Mod Image Downloader
Scarica i file di estensione Nexus Mod Image Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Nexus Mod Image Downloader |
ID | lejfohapodmjalgbmckfhicibabbbggl |
URL Ufficiale | https://chromewebstore.google.com/detail/nexus-mod-image-downloade/lejfohapodmjalgbmckfhicibabbbggl |
Descrizione | Chrome extension for downloading image from nexus mods provided by mod author |
Dimensione del File | 35.7 KB |
Conteggio Installazioni | 135 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2022-05-19 |
Data di Pubblicazione | 2022-05-04 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | lazytwinkletoes |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |