Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / app_background_page / basic / manifest.json
blobf6cecb7ad384ac90b3f6be736154a2c25653ab46
2   "name": "app_background_page/basic",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "Tests that web-extent background pages can be opened, shared, and closed.",
6   "background": {
7     "page": "test.html"
8   },
9   "permissions": ["tabs", "http://a.com/*"],
10   "content_scripts": [
11     {
12       "matches": ["http://a.com/*"],
13       "js": ["content_script.js"],
14       "run_at": "document_end"
15     }
16   ]