Daily Quote Tab

Daily Quote Tab

New tab page that gives you just what you need that day — laughter, encouragement, inspiration, or a moment to breathe.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Daily Quote Tab",
  "version": "0.0.0.4",
  "description": "New tab page that gives you just what you need that day —  laughter, encouragement, inspiration, or a moment to breathe.",
  "background": {
    "scripts": [
      "thirdParty/jquery-3.3.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "permissions": [
    "https://*.honeybook.com/*",
    "activeTab",
    "storage",
    "identity",
    "identity.email",
    "http://*/*",
    "https://*/*",
    "http://hb-public.s3.amazonaws.com/*",
    "https://s3.amazonaws.com/hb-chrome-extension/*"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/hblogo16.png",
      "32": "images/hblogo32.png",
      "48": "images/hblogo48.png",
      "128": "images/hblogo128.png"
    }
  },
  "icons": {
    "16": "images/hblogo16.png",
    "32": "images/hblogo32.png",
    "48": "images/hblogo48.png",
    "128": "images/hblogo128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}