aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 1bdeb403c954dfa9b5a6bacce69aeb314e3f208c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "manifest_version": 2,

  "name": "No More GitHub Neck Cricks",
  "description": "Rotates the GitHub Network Graph into a vertical orientation",
  "version": "0.0.1",
  
  "content_scripts": [
    {
      "matches": ["*://*.github.com/*/*/network"],
      "js": ["network-graph.js"],
      "css": ["network-graph.css"]
    }
  ],
  
  "permissions": [
    "*://*.github.com/"
  ]
}