- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / page_action / hash_change / manifest.json
1 {
2    "background": {
3      "scripts": ["background.js"]
4    },
5    "content_scripts": [ {
6       "js": [ "script.js" ],
7       "matches": [ "http://*/*", "https://*/*" ]
8    } ],
9    "description": "Test url changes with hash-code",
10    "name": "Hash-code changes",
11    "page_action": {
12       "default_icon": "icon.png",
13       "default_title": "Page action"
14    },
15    "permissions": [ "tabs", "http://*/*", "https://*/*" ],
16    "manifest_version": 2,
17    "version": "1.0"
18 }