Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / clipboard / extension_no_permission / manifest.json
1 {
2   "name": "chrome.clipboard.extension_no_permission",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description": "end-to-end browser test for clipboard permissions",
6   "background": {
7     "page": "test.html"
8   },
9   "permissions": ["http://localhost/*"],
10   "content_scripts": [
11     {
12       "matches": ["http://*/*test_file_with_body.html"],
13       "js": ["content_script.js"]
14     }
15   ]
16 }