Licenseplate

Licenseplate

License Hints for Github

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Licenseplate",
  "description": "License Hints for Github",
  "version": "0.3.4",
  "manifest_version": 3,
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "repoView.js"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "profileView.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.github.com/",
    "https://github.com/"
  ],
  "icons": {
    "128": "./logo.png"
  }
}