- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / browserAction / set_page_color / manifest.json
1 {
2   "name": "A browser action with a popup that changes the page color",
3   "description": "Change the current page color",
4   "version": "1.0",
5   "permissions": [
6     "tabs", "http://*/*", "https://*/*"
7   ],
8   "browser_action": {
9       "default_title": "Set this page's color.",
10       "default_icon": "icon.png",
11       "default_popup": "popup.html"
12   },
13   "manifest_version": 2
14 }