Daily Bible Reflection

Daily Bible Reflection

Your daily dose of Bible verses right on your new tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Daily Bible Reflection",
  "version": "2.0.8",
  "manifest_version": 3,
  "description": "Your daily dose of Bible verses right on your new tab page.",
  "homepage_url": "https://www.newtabtools.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "js/bg/background.js"
  },
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "topSites",
    "history",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.newtabtools.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.newtabtools.com/*",
        "https://*.newtabtools.com/*"
      ],
      "js": [
        "js/bg/ext.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "js/ads.js"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  }
}