Nexus Mod Image Downloader
Chrome extension for downloading image from nexus mods provided by mod author
Qu'est-ce que Nexus Mod Image Downloader ?
Nexus Mod Image Downloader est une extension Chrome développée par lazytwinkletoes, et sa fonction principale est "Chrome extension for downloading image from nexus mods provided by mod author".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Nexus Mod Image Downloader
Téléchargez les fichiers d'extension Nexus Mod Image Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Nexus Mod Image Downloader |
ID | lejfohapodmjalgbmckfhicibabbbggl |
URL Officiel | https://chromewebstore.google.com/detail/nexus-mod-image-downloade/lejfohapodmjalgbmckfhicibabbbggl |
Description | Chrome extension for downloading image from nexus mods provided by mod author |
Taille du Fichier | 35.7 KB |
Nombre d'Installations | 135 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2022-05-19 |
Date de Publication | 2022-05-04 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | lazytwinkletoes |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |