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の拡張機能で、その主な機能は「Chrome extension for downloading image from nexus mods provided by mod author」です。
拡張機能のスクリーンショット
Nexus Mod Image Downloader拡張機能のCRXファイルをダウンロード
Nexus Mod Image Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } ] } |