Github HTML Preview

Github HTML Preview

Github HTML Preview provide a quick way to preview the html files in the tree browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "description": "Github HTML Preview provide a quick way to preview the html files in the tree browser",
  "name": "Github HTML Preview",
  "icons": {
    "16": "github_16.png",
    "48": "github_48.png",
    "128": "github_128.png"
  },
  "version": "1.0",
  "permissions": [
    "https://github.com/*",
    "http://github.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://github.com/*",
        "https://github.com/*"
      ],
      "js": [
        "github_preview.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}