LinkedImageDownloader

表示されている画像やリンク先の画像を一括保存します。

LinkedImageDownloader란 무엇입니까?

LinkedImageDownloader은(는) https://otomizu.work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "表示されている画像やリンク先の画像を一括保存します。"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LinkedImageDownloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        表示中の画像とHTMLのaタグに設定されているリンク先の画像を一括ダウンロードします。

使用方法:
右クリック→「LinkedImageDownloader」→「表示画像一括ダウンロード」又は「リンク先画像一括ダウンロード」を押す。                    

확장 프로그램 기본 정보

이름 LinkedImageDownloader LinkedImageDownloader
ID iehgpielgoogmjlmihjkgmbmneooaand
공식 URL https://chrome.google.com/webstore/detail/linkedimagedownloader/iehgpielgoogmjlmihjkgmbmneooaand
설명 表示されている画像やリンク先の画像を一括保存します。
파일 크기 4.68 KB
설치 횟수 5,000
현재 버전 0.1
최근 업데이트 2019-07-13
출시 날짜 2019-07-13
평점 5.00/5 총 1 개의 평점
개발자 https://otomizu.work
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://otomizu.work/2019/06/05/google-chrome-linked-image-downloader/
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkedImageDownloader",
    "version": "0.1",
    "description": "\u8868\u793a\u3055\u308c\u3066\u3044\u308b\u753b\u50cf\u3084\u30ea\u30f3\u30af\u5148\u306e\u753b\u50cf\u3092\u4e00\u62ec\u4fdd\u5b58\u3057\u307e\u3059\u3002",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background-script.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "downloads",
        "activeTab",
        "tabs"
    ]
}