978 Affirmations

978 Affirmations

A Chrome extension that displays a random affirmation as your new tab page.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "978 Affirmations",
  "version": "1.0.2",
  "description": "A Chrome extension that displays a random affirmation as your new tab page.",
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "48": "icons/icon_48.png"
    }
  },
  "background": {
    "service_worker": "install.js"
  },
  "permissions": [
    "storage",
    "favicon"
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "lib/978affirmations.json",
        "_favicon/*"
      ],
      "matches": [
        "chrome-extension://*/*"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ]
}