summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/content_script_inject/manifest.json
blob: 48e4496fed7c37a61eb6ceb725a00166e99ce358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "version": "1.0.0.0",
  "name": "User script inject",
  "content_scripts": [
    {
      "matches": ["file://*/content_script_inject_page.html"],
      "css": ["script1.css"],
      "js": ["js_test.js", "script1a.js", "script1b.js"]
    },
    {
      "matches": ["file://*/content_script_inject_page.html"],
      "js": ["js_test.js", "script2.js"]
    },
    {
      "matches": ["file://*/content_script_inject_page.html"],
      "js": ["js_test.js", "script3.js"],
      "run_at": "document_start"  
    }
  ]
}