GitHub Contribution Tracker

GitHub Contribution Tracker

Track your coding habbits

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.3",
  "name": "GitHub Contribution Tracker",
  "short_name": "GitHub Tracker",
  "manifest_version": 2,
  "description": "Track your coding habbits",
  "author": "Moti Korets",
  "browser_action": {
    "default_title": "git push every day",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "img/128.png",
    "48": "img/128.png",
    "128": "img/128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "secrets.prod.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "https://github.com/*",
    "https://api.github.com/*",
    "identity",
    "tabs"
  ],
  "content_security_policy": "default-src 'self'; script-src 'self' https://ssl.google-analytics.com; connect-src https://github.com https://api.github.com; img-src https://*.githubusercontent.com"
}