Comic Downloader

This plugin was created to download comics and convert them to pdf

What is Comic Downloader?

Comic Downloader is a Chrome extension developed by Quizmo, and its main feature is "This plugin was created to download comics and convert them to pdf".

Download Comic Downloader Extension CRX File

Download Comic Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This plugin will convert the images from the website http://readcomiconline.to/ and convert them into a pdf for offline reading..

This was created for personal use, and only uploaded to the Chrome Webshop to stop Chrome from removing it when restarting Chrome.

Icon created by Sagar Unagar under the licens Attribution 3.0                    

Extension Basic Information

Name Comic Downloader Comic Downloader
ID goofdkpiolidkahcmobnhkpeojceehoh
Official URL https://chrome.google.com/webstore/detail/comic-downloader/goofdkpiolidkahcmobnhkpeojceehoh
Description This plugin was created to download comics and convert them to pdf
File Size 119 KB
Installation Count 272
Current Version 1.0
Last Updated 2017-05-19
Publish Date 2017-05-19
Rating 1.91/5 Total 11 Ratings
Developer Quizmo
Payment Type free
Extension Website https://github.com/Quizmo/ComicDownload/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comic Downloader",
    "description": "This plugin was created to download comics and convert them to pdf",
    "version": "1.0",
    "author": "Quizmo",
    "icons": {
        "16": "css\/icon\/icon16.png",
        "48": "css\/icon\/icon48.png",
        "128": "css\/icon\/icon128.png"
    },
    "browser_action": {
        "default_icon": "css\/icon\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/readcomiconline.to\/*",
                "http:\/\/*.blogspot.com\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/FileSaver.min.js",
                "js\/lib\/jspdf.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/lib\/content.js"
    ],
    "permissions": [
        "activeTab",
        "downloads",
        "https:\/\/ajax.googleapis.com\/",
        "tabs",
        "http:\/\/readcomiconline.to\/*",
        "http:\/\/*.blogspot.com\/*"
    ]
}