EPUB READER

EPUB READER

Great choice for reading EPUB files, you can esaily open your EPUB files with this app.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.0.3",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-64.png",
    "128": "img/icon-512.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "EPUB READER",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://www.epubreader.xyz/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content-script.js"
      ],
      "css": [
        "css/custom.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*.png",
        "*://*/*.jpg",
        "*://*/*.gif",
        "*://*/*.bmp"
      ],
      "js": [
        "js/show-image-content-size.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/reader.js"
  ],
  "homepage_url": "https://www.epubreader.xyz",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}