KJV Bible Verse Tagger

KJV Bible Verse Tagger

Instantly view dynamic popup verses on Bible websites using the KJV Simple Search Parallel Bible.

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"
  },
  "name": "KJV Bible Verse Tagger",
  "version": "1.5",
  "permissions": [
    "activeTab"
  ],
  "manifest_version": 3,
  "description": "Instantly view dynamic popup verses on Bible websites using the KJV Simple Search Parallel Bible.",
  "icons": {
    "16": "ktagger16.png",
    "48": "ktagger48.png",
    "128": "ktagger128.png"
  },
  "action": {
    "default_icon": {
      "19": "ktagger32.png",
      "38": "ktagger48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.dailywordofgodgroup.com/*",
        "https://www.dwogg.org/*"
      ],
      "js": [
        "kjvbibletag.js"
      ],
      "run_at": "document_idle"
    }
  ]
}