Bible Previewer

Bible Previewer

Turns every bible verse into a link you can hover to see the contents of the verse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bible Previewer",
  "short_name": "BiblePreview",
  "author": "Cody Guldner",
  "description": "Turns every bible verse into a link you can hover to see the contents of the verse.",
  "version": "1.4.0",
  "icons": {
    "16": "icons/bible16.png",
    "32": "icons/bible32.png",
    "64": "icons/bible64.png",
    "128": "icons/bible128.png"
  },
  "permissions": [
    "https://bibles.org/v2/",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/bible16.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    "js/*.js.map"
  ],
  "content_scripts": [
    {
      "css": [
        "css/biblePreviewer.css"
      ],
      "js": [
        "js/biblePreviewer.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ]
}