KJV Simple Search Parallel Bible App

KJV Simple Search Parallel Bible App

Search KJV Bible quickly, type [KJV] in omnibar, look up selected text, view popup verses, read plan alerts, and bookmark passages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage",
    "alarms",
    "notifications",
    "activeTab",
    "bookmarks"
  ],
  "name": "KJV Simple Search Parallel Bible App",
  "short_name": "KJV Bible",
  "description": "Search KJV Bible quickly, type [KJV] in omnibar, look up selected text, view popup verses, read plan alerts, and bookmark passages.",
  "version": "3.1",
  "action": {
    "default_icon": "icon19.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.dailywordofgodgroup.com/*",
        "https://www.dwogg.org/*"
      ],
      "js": [
        "kjvbibletag.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "omnibox": {
    "keyword": "kjv"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  }
}