GitHub AST Viewer

GitHub AST Viewer

View the abstract syntax tree (AST) of code on GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub AST Viewer",
  "version": "1.0.5",
  "description": "View the abstract syntax tree (AST) of code on GitHub.",
  "author": "Luke Horvat",
  "homepage_url": "https://github.com/lukehorvat/github-ast-viewer",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.github.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ]
    }
  ],
  "permissions": [
    "https://*.githubusercontent.com/*"
  ]
}