GitHub Release Downloads

GitHub Release Downloads

This extension displays the number of downloads GitHub releases have on the releases page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.3.4",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*/*/releases",
        "*://github.com/*/*/releases/tag/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}