Git Improve Hub

Git Improve Hub

A bunch of small improvements to the GitHub view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Git Improve Hub",
  "description": "A bunch of small improvements to the GitHub view.",
  "version": "0.0.2",
  "author": "Ivan Tse",
  "permissions": [
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "sticky.js",
        "toggleable.js",
        "remove_diff_signs.js",
        "permalink.js"
      ],
      "css": [
        "sticky.css",
        "remove_diff_signs.css",
        "permalink.css"
      ]
    }
  ]
}