FB2 Reader

FB2 Reader

Allows reading FictionBook (.fb2 and fb2.zip) files from websites. Just click on fb2 link and that is it. Only works for unzipped local .fb2 files. For Linux support please see the description.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Read FB2 e-Books with Firefox",
  "manifest_version": 2,
  "name": "FB2 Reader",
  "version": "0.32resigned1",
  "homepage_url": "https://github.com/tymofij/fb2reader",
  "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",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*.fb2*",
    "*://*/*.FB2*",
    "*://*/*.Fb2*",
    "*://*/*.fB2*"
  ],
  "background": {
    "scripts": [
      "jszip.js",
      "streamfilter.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0a1"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "file:///*.fb2",
        "file:///*.FB2",
        "file:///*.Fb2",
        "file:///*.fB2"
      ],
      "js": [
        "tools.js",
        "local.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/icon-16.png",
    "icons/icon-16-2x.png",
    "css/fb2.css",
    "css/html.css",
    "css/print.css",
    "tools.js"
  ]
}