Foresight Dashboard for GitHub Actions

Foresight Dashboard for GitHub Actions

A simplified GitHub Actions status dashboard based on the Foresight Repositories app view.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Foresight Dashboard for GitHub Actions",
  "version": "1.0.12",
  "manifest_version": 3,
  "author": "Sebastian Zaklada",
  "description": "A simplified GitHub Actions status dashboard based on the Foresight Repositories app view.",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "repositories.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://app.runforesight.com/repositories",
        "https://app.runforesight.live/repositories"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}