Advertisement
Guest User

How to fix Adobe Flash support in Chrome 62

a guest
Dec 30th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. I found the cause and fix for the issue.
  2.  
  3. The Chrome settings file is not writing out the value when you save it.
  4.  
  5. I've tested on Windows 2012 Server / 7, 10, 32 and 64 bit versions with the most recent and older versions of Chrome so this should fix them all.
  6.  
  7.  
  8.  
  9. Your Chrome settings file is located here:
  10.  
  11. In Windows:
  12. C:\Users\<username>\AppData\Local\Google\Chrome\User Data\Default\Preferences
  13.  
  14. In OS X:
  15. ~/Library/Application Support/Google/Chrome/User Data/Default/Preferences
  16.  
  17.  
  18. You should exit Chrome and make a backup before editing.
  19.  
  20.  
  21.  
  22. Open the file with a text editor:
  23.  
  24. Find the setting: "plugins": which appears after "permission_autoblocking_data"
  25.  
  26. and replace with this setting to enable flash player
  27.  
  28. "plugins": {"*,*": {"per_resource": {"adobe-flash-player": 1}}},
  29.  
  30.  
  31.  
  32. or if you want to replace the entire profile section in the setting file with a generic default one:
  33.  
  34.  
  35. "profile" : {
  36. "avatar_index" : 26,
  37. "content_settings" : {
  38. "domain_to_origin_migration_status" : 1,
  39. "exceptions" : {
  40. "accessibility_events" : {},
  41. "app_banner" : {},
  42. "auto_select_certificate" : {},
  43. "automatic_downloads" : {},
  44. "autoplay" : {},
  45. "background_sync" : {},
  46. "bluetooth_guard" : {},
  47. "client_hints" : {},
  48. "cookies" : {},
  49. "durable_storage" : {},
  50. "geolocation" : {},
  51. "images" : {},
  52. "important_site_info" : {},
  53. "javascript" : {},
  54. "media_stream_camera" : {},
  55. "media_stream_mic" : {},
  56. "midi_sysex" : {},
  57. "mixed_script" : {},
  58. "notifications" : {},
  59. "password_protection" : {},
  60. "permission_autoblocking_data" : {},
  61. "plugins" : {
  62. "*,*" : {
  63. "per_resource" : {
  64. "adobe-flash-player" : 1
  65. }
  66. }
  67. },
  68. "popups" : {},
  69. "ppapi_broker" : {},
  70. "prompt_no_decision_count" : {},
  71. "protocol_handler" : {},
  72. "sensors" : {},
  73. "sound" : {},
  74. "ssl_cert_decisions" : {},
  75. "subresource_filter" : {},
  76. "subresource_filter_data" : {},
  77. "usb_chooser_data" : {}
  78.  
  79. },
  80. "pref_version" : 1
  81. },
  82. "exit_type" : "Crashed",
  83. "exited_cleanly" : true,
  84. "icon_version" : 4,
  85. "last_engagement_time" : "13156449498380465",
  86. "managed_user_id" : "",
  87. "name" : "Person 1",
  88. "observed_time" : 7,
  89. "was_obsolete_http_data_cleaned" : true
  90. },
  91.  
  92.  
  93.  
  94.  
  95. You can use the value of 1 to never ask you to run flash, just do it, or 2 to prompt if you would like to run it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement