ePubby

ePubby

Transform websites into ebooks to read anywhere.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ePubby",
  "description": "Transform websites into ebooks to read anywhere.",
  "version": "0.0.1",
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "popup.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/bootstrap/js/modal.js",
        "bower_components/react/react.js",
        "bower_components/react/react-dom.js",
        "modal.js",
        "main.js"
      ],
      "css": [
        "main-style.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*",
    "https://ajax.googleapis.com/"
  ]
}