CBZ Maker

CBZ Maker

Extract Pictures from a webpage and builds a CBZ file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CBZ Maker",
  "version": "1.0.0",
  "description": "Extract Pictures from a webpage and builds a CBZ file",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "jszip.min.js",
        "FileSaver.min.js",
        "cbz-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-3.1.0.min.js",
    "cbz-content.js"
  ],
  "browser_action": {
    "default_title": "Make CBR out of this",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "author": "Porfirio Mendez Ocampo",
  "short_name": "CBZLizer",
  "version_name": "BETA"
}