Comics Downloader

Download comic books!

Comics Downloader란 무엇입니까?

Comics Downloader은(는) ruflashist에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download comic books!"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Was developed to download comics. Currently works only with the readcomiconline website.

How to:
- Open readcomiconline
- Find a comic book you would like to download
- Open the page with this comic book
- Press the Comics Downloader extension icon
- Wait
- Wait more
- Sometimes you have to wait quite a long time (though the progress is shown as percentage above the extension icon)
- Find the .cbz archive in the download folder

Feel free to leave a comment if something is good/bad about the way the extension works. Any feedback is appreciated!

Version 1.4:
- Make the extension work with different domains of the readcomiconline website.

Version 1.2:
- The archived comic books size is reduced by 5-8 times.
- Images saving format is changed to JPG (previously PNG).                    

확장 프로그램 기본 정보

이름 Comics Downloader Comics Downloader
ID kppcdcpdknadnfdblpnknkpejminjlfn
공식 URL https://chromewebstore.google.com/detail/comics-downloader/kppcdcpdknadnfdblpnknkpejminjlfn
설명 Download comic books!
파일 크기 160 KB
설치 횟수 3,135
현재 버전 1.4
최근 업데이트 2021-05-01
출시 날짜 2019-10-12
평점 3.24/5 총 46 개의 평점
개발자 ruflashist
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comics Downloader",
    "version": "1.4",
    "description": "Download comic books!",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ],
    "background": {
        "scripts": [
            "libs\/FileSaver.js",
            "libs\/jszip.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/main_16.png",
        "32": "images\/main_32.png",
        "48": "images\/main_48.png",
        "128": "images\/main_128.png"
    },
    "manifest_version": 2
}