- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / uma_policy / manifest.json
1 {
2   "name": "Activity Log UMA Policy Test Extension",
3   "version": "0.1",
4   "description": "Testing the histogramming",
5   "content_scripts": [
6       {
7         "matches": ["http://www.google.com/*", "http://www.cnn.com/*"],
8         "js": ["content_script.js"]
9       },
10       {
11         "matches": ["http://www.opener.com/*"],
12         "js": ["opener.js"]
13       }
14     ],
15   "background": {
16     "scripts": ["background.js"]
17   },
18   "permissions": [ "http://www.done.com/*", "tabs" , "http://www.blocker.com/*"],
19   "manifest_version": 2
20 }