Forecast

Forecast

Forecast allows you to remove the mystery from the numbers that affect your personal and business life the most.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Forecast",
  "description": "Forecast allows you to remove the mystery from the numbers that affect your personal and business life the most.",
  "version": "1.0.3.20",
  "manifest_version": 3,
  "icons": {
    "128": "/img/logo.png"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "/pages/popup/index.html",
    "default_icons": {
      "16": "/img/logo.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": true,
      "matches": [
        "https://*/*"
      ],
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/css/content.css"
      ]
    }
  ],
  "permissions": [],
  "host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": []
    }
  ]
}