Bible Verses Finder

Bible Verses Finder

Highlight a sentence or paragraph. A popup window will show related 3 Bible verses and interpretation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Bible Verses Finder",
  "version": "1.0",
  "description": "Highlight a sentence or paragraph. A popup window will show related 3 Bible verses and interpretation.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}