OLD | NEW |
(Empty) | |
| 1 # List of ChromeOS Chrome plugins to verify plugins' version and state. |
| 2 # To add new plugin, add new plugin with following version in the list, |
| 3 # {u'name':'<Plugin Name>', u'enabled':<True/False>, u'version':u'<VERSION>'} |
| 4 # Used by: chrome/test/functional/plugins_check.py |
| 5 # Note: By default the script will use the key named 'name' as the unique |
| 6 # identifier. If you want to override you can use the unique_key key |
| 7 [ |
| 8 {u'unique_key':'path', u'name':u'Shockwave Flash', u'path':'/opt/google/chrome/
pepper/libpepflashplayer.so', u'enabled':1, u'version':u'10.2.158.7'}, |
| 9 {u'unique_key':'path', u'name':u'Shockwave Flash', u'path':'/opt/google/chrome/
plugins/libgcflashplayer.so', u'enabled':1, u'version':u'10.2 r154'}, |
| 10 {u'name':'Chrome PDF Viewer', u'enabled':1, u'version':u''}, |
| 11 {u'name':'Netflix', u'enabled':1, u'version':u'0.1.1'}, |
| 12 {u'name':'Google Talk Plugin', u'enabled':1, u'version':u''}, |
| 13 {u'name':'O3D Plugin', u'enabled':1, u'version':u''}, |
| 14 {u'name':'Default Plug-in', u'enabled':1, u'version':u'1'}, |
| 15 ] |
OLD | NEW |