summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/addon-source/browser_dbg_addon_webext_contentscript/manifest.json
blob: ebc834bf734df6ab5f8fc452a5ecdcc61ca9f331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "manifest_version": 2,
  "name": "test content script sources",
  "description": "test content script sources",
  "version": "0.1.0",
  "applications": {
    "gecko": {
      "id": "test-contentscript-sources@mozilla.com"
    }
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["webext-content-script.js"],
      "run_at": "document_start"
    }
  ]
}