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”。

擴展截圖

screenshot

下載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 Nexus Mod Image Downloader
ID lejfohapodmjalgbmckfhicibabbbggl
官方網址 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\/*"
            ]
        }
    ]
}