Fika - Reader Mode

Fika - Reader Mode

A Kindle-like reading experience for the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fika - Reader Mode",
  "short_name": "Fika",
  "version": "0.9.2",
  "description": "A Kindle-like reading experience for the web.",
  "homepage_url": "https://www.fika.io",
  "author": "Fika",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/lib/polyfill.min.js",
      "scripts/lib/jquery-1.11.0.min.js",
      "scripts/model.js",
      "scripts/app.js",
      "scripts/module/version.js",
      "scripts/module/common/module.js",
      "scripts/module/background/module.js",
      "scripts/run.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/lib/polyfill.min.js",
        "scripts/lib/jquery-1.11.0.min.js",
        "scripts/lib/highlight.min.js",
        "scripts/app.js",
        "scripts/model.js",
        "scripts/module/fonts.js",
        "scripts/module/version.js",
        "scripts/module/reader/module.js",
        "scripts/module/reader/view.js",
        "scripts/module/common/module.js",
        "scripts/module/content/module.js",
        "scripts/module/content/view.js",
        "scripts/module/content/event.js",
        "scripts/run.js"
      ],
      "css": [
        "style/content.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Fika",
    "default_icon": "images/logo64-grey.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo64.png",
    "128": "images/logo128.png"
  },
  "web_accessible_resources": [
    "*.ttf",
    "images/*"
  ]
}