Gitcolor - Github Contribution Themer

Gitcolor - Github Contribution Themer

Set different themes to the GitHub contribution graph

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitcolor - Github Contribution Themer",
  "short_name": "Gitcolor",
  "version": "0.1.5",
  "description": "Set different themes to the GitHub contribution graph",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://github.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/theme.svg"
      ],
      "matches": [
        "*://github.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/favicon-16x16.png",
    "24": "assets/favicon-24x24.png",
    "32": "assets/favicon-32x32.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}