GitHub Latest Release

GitHub Latest Release

Shows the latest release version right next to the name on a GitHub repository page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "GitHub Latest Release",
  "version": "1.0.46",
  "description": "Shows the latest release version right next to the name on a GitHub repository page.",
  "manifest_version": 3,
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://github.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c2f73c5e-b4ff-446a-b814-e3e28faa325d}"
    }
  },
  "host_permissions": [
    "https://api.github.com/*"
  ]
}