Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / browser_action / no_icon / manifest.json
1 {
2   "name": "A browser action with no icon that makes the page red",
3   "version": "1.0",
4   "manifest_version": 2,
5   "background": {
6     "page": "background.html"
7   },
8   "permissions": [
9     "tabs", "http://*/*"
10   ],
11   "browser_action": {
12       "name": "Make this page red"
13   }
14 }