Git Up

Git Up

Move Github repository's readme to the top

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Git Up",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Move Github repository's readme to the top",
  "homepage_url": "https://www.aniket.co",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://github.com/*"
  ]
}