colorful-github-contribution

colorful-github-contribution

Custom color scheme for github contribution bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "colorful-github-contribution",
  "short_name": "CGC",
  "version": "0.3.0",
  "author": "gigaflw",
  "description": "Custom color scheme for github contribution bar",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "ColorfulGithub"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "file://*"
      ],
      "js": [
        "theme.js",
        "util.js",
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "presets/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "homepage_url": "https://github.com/dyweb/colorful-contribution"
}