| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "chrome.clipboard.extension", | 2 "name": "chrome.clipboard.extension", |
| 3 "version": "0.1", | 3 "version": "0.1", |
| 4 "manifest_version": 2, | 4 "manifest_version": 2, |
| 5 "description": "end-to-end browser test for clipboard permissions", | 5 "description": "end-to-end browser test for clipboard permissions", |
| 6 "background": { | 6 "background": { |
| 7 "page": "test.html" | 7 "page": "test.html" |
| 8 }, | 8 }, |
| 9 "permissions": ["clipboardRead"] | 9 "permissions": ["clipboardRead", "clipboardWrite", "http://localhost/*"], |
| 10 "content_scripts": [ |
| 11 { |
| 12 "matches": ["http://*/*test_file_with_body.html"], |
| 13 "js": ["content_script.js"] |
| 14 } |
| 15 ] |
| 10 } | 16 } |
| OLD | NEW |