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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
            ]
        }
    ]
}