Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / lazy_background_page / messaging / manifest.json
blob7f59901f95539736b5505219a79f1e2629a0d80a
2   "name": "Lazy BG messaging test",
3   "description": "Test that message passing starts the background page",
4   "version": "1",
5   "manifest_version": 2,
6   "background": {
7     "scripts": ["background.js"],
8     "persistent": false
9   },
10   "content_scripts": [
11     {
12       "matches": ["http://*/*"],
13       "js": ["content.js"]
14     }
15   ]