| OLD | NEW |
| 1 { | 1 { |
| 2 "version": "1.0.0.0", | 2 "version": "1.0.0.0", |
| 3 "manifest_version": 2, | 3 "manifest_version": 2, |
| 4 "name": "NPAPI plugin test", | 4 "name": "NPAPI plugin test", |
| 5 "description": "Tests that private publics are only visible to the extension", | 5 "description": "Tests that private publics are only visible to the extension", |
| 6 "plugins": [ | 6 "plugins": [ |
| 7 {"path": "plugin.dll"}, | 7 {"path": "plugin.dll"}, |
| 8 {"path": "plugin.plugin"}, | 8 {"path": "plugin.plugin"}, |
| 9 {"path": "plugin32.so"}, | 9 {"path": "plugin32.so"}, |
| 10 {"path": "plugin64.so"} | 10 {"path": "plugin64.so"} |
| 11 ] | 11 ], |
| 12 "requirements": { |
| 13 "plugins": { |
| 14 "npapi": false |
| 15 } |
| 16 } |
| 12 } | 17 } |
| OLD | NEW |