| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "chrome.clipboard", | 2 "name": "chrome.clipboard", |
| 3 "version": "0.1", | 3 "version": "0.1", |
| 4 "description": "end-to-end browser test for chrome.experimental.clipboard API"
, | 4 "description": "end-to-end browser test for chrome.experimental.clipboard API"
, |
| 5 "background_page": "test.html", | 5 "background_page": "test.html", |
| 6 "permissions": ["experimental", "tabs"], | 6 "permissions": ["clipboardRead", "experimental", "tabs"], |
| 7 "content_scripts": [ | 7 "content_scripts": [ |
| 8 { | 8 { |
| 9 "matches": ["http://*/*"], | 9 "matches": ["http://*/*"], |
| 10 "js": ["test_helper.js"] | 10 "js": ["test_helper.js"] |
| 11 } | 11 } |
| 12 ] | 12 ] |
| 13 } | 13 } |
| OLD | NEW |