Convert to ePub

Convert to ePub

Save a web page as a eBook (.epub)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_AppName__",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "background": {
    "scripts": [
      "background.js",
      "js/update-conf.js",
      "js/update.js"
    ]
  },
  "icons": {
    "16": "icons/icon-16.png",
    "24": "icons/icon-24.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png",
    "512": "icons/icon-512.png"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "offline_enabled": true,
  "browser_action": {
    "default_title": "Webpage to EPUB",
    "default_popup": "menu.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "jszip.js",
        "jszip-utils.js",
        "pure-parser.js",
        "cssjson.js",
        "filesaver.js",
        "saveEbook.js",
        "extractHtml.js",
        "utils.js"
      ]
    }
  ],
  "commands": {
    "save-page": {
      "suggested_key": {
        "default": "Alt+Shift+1"
      },
      "description": "Save current page as eBook"
    },
    "save-selection": {
      "suggested_key": {
        "default": "Alt+Shift+2"
      },
      "description": "Save current selection as eBook"
    },
    "add-page": {
      "suggested_key": {
        "default": "Alt+Shift+3"
      },
      "description": "Add current page as chapter"
    },
    "add-selection": {
      "suggested_key": {
        "default": "Alt+Shift+4"
      },
      "description": "Add current selection as chapter"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}