Comic Downloader

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

Comic Downloaderคืออะไร?

Comic Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Quizmo และคุณลักษณะหลักของมันคือ "This plugin was created to download comics and convert them to pdf"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comic Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/*"
    ]
}