Bible Scripture Tagger

Bible Scripture Tagger

Create a hover for Bible references. It reveals the verse text and provides a link for further study at the Bible Portal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bible Scripture Tagger",
  "description": "Create a hover for Bible references. It reveals the verse text and provides a link for further study at the Bible Portal",
  "version": "0.0.1",
  "action": {
    "default_icon": {
      "16": "/icons/icon16.png",
      "32": "/icons/icon32.png",
      "48": "/icons/icon48.png",
      "128": "/icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css",
        "css/scripture_tagger.css"
      ],
      "js": [
        "scripts/jquery-1.11.2.min.js",
        "scripts/yahoo-dom-event.js",
        "scripts/scripture_tagger.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/bp-logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}