Nexus Mod Image Downloader
Chrome extension for downloading image from nexus mods provided by mod author
Nexus Mod Image Downloader क्या है?
Nexus Mod Image Downloader lazytwinkletoes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension for downloading image from nexus mods provided by mod author"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Nexus Mod Image Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Nexus Mod Image Downloader |
ID | lejfohapodmjalgbmckfhicibabbbggl |
आधिकारिक URL | https://chromewebstore.google.com/detail/nexus-mod-image-downloade/lejfohapodmjalgbmckfhicibabbbggl |
विवरण | Chrome extension for downloading image from nexus mods provided by mod author |
फ़ाइल का आकार | 35.7 KB |
स्थापना संख्या | 135 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2022-05-19 |
प्रकाशन तिथि | 2022-05-04 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | lazytwinkletoes |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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\/*" ] } ] } |