OSS Score

OSS Score

Adds Repo Activity and License Scores to GitHub Repository Page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OSS Score",
  "version": "0.1.0",
  "description": "Adds Repo Activity and License Scores to GitHub Repository Page",
  "icons": {
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "OSS Score",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "extension.js"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "extension.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "manifest_version": 3
}