Elim cr-checkbox
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / messaging / connect / manifest.json
blobabb898b8f03d2def83935310960c9afe754b927c
2   "name": "connect_external",
3   "version": "1.0",
4   "manifest_version": 2,
5   "description": "Tests connect from a content script.",
6   "permissions": ["tabs", "webNavigation"],
7   "background": {
8     "persistent": false,
9     "scripts": ["test.js"]
10   },
11   "content_scripts": [
12     {
13       "matches": ["http://*/*"],
14       "js": ["page.js"]
15     },
16     {
17       "all_frames": true,
18       "matches": ["http://*/*?testSendMessageFromFrame*"],
19       "js": ["frame.js"]
20     }
21   ]