Comic Downloader

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

什麼是Comic Downloader?

Comic Downloader是由Quizmo開發的Chrome擴展程式,該擴展的主要功能是“This plugin was created to download comics and convert them to pdf”。

下載Comic Downloader擴展crx文件

下載Comic Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Comic Downloader Comic Downloader
ID goofdkpiolidkahcmobnhkpeojceehoh
官方網址 https://chrome.google.com/webstore/detail/comic-downloader/goofdkpiolidkahcmobnhkpeojceehoh
簡介 This plugin was created to download comics and convert them to pdf
檔案大小 119 KB
安裝次數 272
目前版本 1.0
更新時間 2017-05-19
上架時間 2017-05-19
評分 1.91/5 共 11 次評分
開發者 Quizmo
付費類型 free
擴展官網 https://github.com/Quizmo/ComicDownload/
支援的語言 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\/*"
    ]
}