Avatars for Github

Avatars for Github

Displaying user avatars in github news feed page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Avatars for Github",
  "version": "0.1.5",
  "manifest_version": 2,
  "description": "Displaying user avatars in github news feed page",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "homepage_url": "http://github.com/anasnakawa/chrome-github-avatars",
  "permissions": [
    "tabs",
    "*://github.com/"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "web_accessible_resources": [],
  "content_scripts": [
    {
      "matches": [
        "*://github.com/"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "bower_components/jquery/jquery.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}