Affirmations Flow

Affirmations Flow

Replace the new tab page with your affirmations — add, edit and shuffle play them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Affirmations Flow",
  "version": "0.0.1.1",
  "manifest_version": 3,
  "description": "Replace the new tab page with your affirmations — add, edit and shuffle play them.",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "images/affirmations-flow-icon-16x16.png",
    "48": "images/affirmations-flow-icon-48x48.png",
    "128": "images/affirmations-flow-icon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.affirmationsflow.com/*"
      ],
      "js": [
        "js/xlsx_lib.js",
        "js/whichfile.js",
        "js/newtab.js",
        "js/affirmation.js"
      ],
      "run_at": "document_end"
    }
  ],
  "chrome_url_overrides": {
    "newtab": "whichfile.html"
  },
  "permissions": [
    "storage"
  ]
}