vote up 2 vote down star
1

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?

flag

20% accept rate

1 Answer

vote up 3 vote down check

Set WebKitDeveloperExtras to YES in your default user defaults when you send -[NSUserDefaults registerDefaults:]. This applies app-wide, of course.

Remember that the user can change it to NO, so don't assume that it's YES—if it ever matters (e.g., when customizing the contextual menu), always check.

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.

link|flag
This works! Awesome! Side note: It sets the setting on the first load, which doesn't take effect until the app is restarted. Not sure how to get around this -- perhaps supply a default properties file... – loglibrarian Mar 30 at 2:21
loglibrarian: Set it earlier. If applicationWillFinishLaunching: isn't good enough, set it in your main() function. – Peter Hosey Mar 30 at 6:29
Ok I know I'm pushing my luck here, but is there a way to programatically launch the web inspector? Perhaps a private api? – loglibrarian Mar 30 at 16:49
Private API is private because it will go away someday. (Or become public with no changes, if you're EXTREMELY lucky.) If you're feeling bold, class-dump WebKit and try using the WebInspectorWindowController. Be sure you guard everything so that you fail gracefully if it changes. – Peter Hosey Mar 30 at 17:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.