
Enable Develop (Debug) Menu on Safari 4 for Windows
February 1, 2010Safari doesn’t come out with the developer’s menu enabled by default. To enable it on window, you’ll need to edit C:\Program Files\Safari\Safari.resources\Default.plist add add the following into the list of key – boolean values.
<key>IncludeDebugMenu</key> <true/> <key>WebKitDeveloperExtras</key> <true/>
Initially I thought of only enabling IncludeDebugMenu but any attempt to show the Error Console or the Web Inspector would not show those windows at all.
Advertisement