Github Active Forks

Github Active Forks

Adds an active forks section on a Github Page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Active Forks",
  "description": "Adds an active forks section on a Github Page",
  "version": "0.0.3",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup_options.html",
    "default_icon": {
      "16": "./images/logo-16.png",
      "32": "./images/logo-32.png",
      "48": "./images/logo-48.png",
      "128": "./images/logo-128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "./images/logo-16.png",
    "32": "./images/logo-32.png",
    "48": "./images/logo-48.png",
    "128": "./images/logo-128.png"
  }
}