I would like to use the WebKit web inspector in a custom browser based on WebKit on OS X. Is it possible to use the web inspector on a webview object? If so, how?
|
Set Remember that the user can change it to Warning: This preference doesn't necessarily only enable the Element Inspector. Apple may extend it in the future to also control, say, a Debug menu in your menu bar. You may find this an unacceptable risk. |
|||||||||||||
|
|
A REALLY easy way to do it... is in the terminal.... ⌘ ⬆ ☺
NOTE: You MUST change The nice thing about this... there is NO WAY to forget to take it out, turn it off, comment it out, etc... This is a LOCAL setting... and can be set for ANY webkit enabled app... If you don't see a Developer Menu, or whatnot.. fret not.. Right☝ (click) on the Webview and go to "Show Inspector". Also, along the same lines, the following may do something as well.. but I havent tried it, so not sure..
|
||||
|
|
|
in my case (MacOSX 10.6.5) it didn't work. I had to do the following in the windowDidLoad method of my webView WindowController: /* Initialize webInspector. */ [[NSUserDefaults standardUserDefaults] setBool:TRUE forKey:@"WebKitDeveloperExtras"]; [[NSUserDefaults standardUserDefaults] synchronize]; |
|||
|
|
|
I tried doing so, but couldn't see WebInspector. Isn't it like ][NSUserDefaults standarduserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:@"WebKitDeveloperExtras"]]? |
|||||
|
|
WebKit recommends:
Apple recommends:
However, as far as I can tell, this may no longer work if you are running your application out of sandbox (which you may need to do during some stages of development). In case you run in to this problem, what worked for me is to set the value for the WebKitDeveloperExtras key in the NSGlobalDomain:
|
|||
|
|
