eidReader Plugin Chrome Extension

eidReader Plugin Chrome Extension

Allows use of native eidReader plugin from Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eidReader Plugin Chrome Extension",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Allows use of native eidReader plugin from Chrome",
  "icons": {
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "FireBreathPromise.js",
      "wyrmhole.js",
      "firewyrm.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "wyrmhole.js",
    "wyrmhole-page.js",
    "FireBreathPromise.js",
    "firewyrm.js"
  ],
  "permissions": [
    "nativeMessaging"
  ]
}