Github 404 Breakdown

Github 404 Breakdown

Explains why GitHub returned a 404

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Github 404 Breakdown",
  "description": "Explains why GitHub returned a 404",
  "version": "3.2",
  "icons": {
    "128": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "github-404-breakdown.js"
      ],
      "matches": [
        "*://github.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "github-404-breakdown-content-script.js"
      ],
      "css": [
        "github-404-breakdown.css"
      ],
      "all_frames": false
    }
  ]
}