Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / extensions / trigger_actions / page_action / manifest.json
blobea7a11082fa7f24971ff50ac276e0b8d723a71d7
2   "name": "A page action that makes the active tab's background red",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "scripts": ["background.js"]
7   },
8   "permissions": [
9     "tabs", "file://*"
10   ],
11   "page_action": {
12       "name": "Make this page red",
13       "default_icon": "icon.png"
14   }