summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/extension1/manifest.json
blob: 1f5e362e351b75f1f8b40c66bb0abe6a712235be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "format_version": 1,
  "id": "com.google.myextension1",
  "version": "1.0.0.0",
  "name": "My extension 1",
  "description": "The first extension that I made.",
  "user_scripts": [
    {
      "matches": ["http://*.google.com/*", "https://*.google.com/*"],
      "files": ["script1.js"]
    },
    {
      "matches": ["http://*.yahoo.com/*"],
      "files": ["script2.js"]
    }
  ]
}