Comic Downloader

Comic Downloader

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

Merlin
Additional files are visible only to premium users

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/*"
  ]
}