KJV Simple Search Parallel Bible Sidebar

KJV Simple Search Parallel Bible Sidebar

Search The KJV Bible quickly without leaving your current page inside a sidebar [ALT+K] or by inserting [KJV] inside the omnibar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "permissions": [
    "bookmarks",
    "downloads",
    "tabs",
    "contextMenus",
    "notifications",
    "storage",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "name": "KJV Simple Search Parallel Bible Sidebar",
  "short_name": "KJV Bible",
  "description": "Search The KJV Bible quickly without leaving your current page inside a sidebar [ALT+K] or by inserting [KJV] inside the omnibar.",
  "version": "2.3",
  "omnibox": {
    "keyword": "kjv"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon19.png",
    "default_title": "KJV Simple Search Parallel Bible Sidebar"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+K",
        "windows": "Alt+K",
        "mac": "Alt+K"
      }
    }
  },
  "web_accessible_resources": [
    "frame.html"
  ]
}