Github Menu Back

Github Menu Back

Go to my personal page by one click, dont like the new design,so I decided to change it for my beloving GitHub

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Github Menu Back",
  "version": "1.1",
  "author": "Charlie Jade <[email protected]> (http://summerblue.me)",
  "description": "Go to my personal page by one click, dont like the new design,so I decided to change it for my beloving GitHub",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://www.github.com/*",
        "https://github.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ]
}