Word Box

Word Box

Get a Word of God on every New Tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Box",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Get a Word of God on every New Tab",
  "icons": {
    "16": "image/bible_16.png",
    "32": "image/bible_32.png",
    "64": "image/bible_64.png",
    "128": "image/bible_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "html/index.html"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "history"
  ],
  "web_accessible_resources": [
    "data/*.json"
  ]
}