Changes between Version 65 and Version 66 of WebInspector
- Timestamp:
- Jan 23, 2013, 11:02:22 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspector
v65 v66 2 2 The Web Inspector allows you to view the page source, live DOM hierarchy, script debugging, profiling and more! 3 3 4 == Enabling Web Inspector ==4 == Enabling the Web Inspector == 5 5 6 * Safari — Enable the Develop menu option in the Advanced preferences. Use the optional toolbar button, Develop menu or Inspect Element context menu to access the Web Inspector. 6 === Safari === 7 * Enable the Develop menu option in the Advanced preferences. 8 * Use the optional toolbar button, Develop menu or Inspect Element context menu to access the Web Inspector. 7 9 8 * Google Chrome — Enabled by default, use the Inspect Element context menu to access the Web Inspector. 10 === Google Chrome === 11 * Enabled by default. Use the Inspect Element context menu to access the Web Inspector. 9 12 10 * Any WebKit client — Find the application's bundle identifier. Enter the following command once in Terminal, inserting the bundle identifier, and relaunch the application in order to use the Web Inspector. 13 === Other WebKit clients === 14 * Find the application's bundle identifier. 15 * Enter the following command once in Terminal (inserting the bundle identifier) 11 16 {{{ 12 17 defaults write «bundle-identifier-here» WebKitDeveloperExtras -bool true 13 18 }}} 19 * Relaunch the application in order to use the Web Inspector 14 20 15 21 == Using the Web Inspector == … … 31 37 32 38 == Hacking on the Web Inspector == 33 Most of the Web Inspector's code is HTML, JavaScript, and CSS, so it's very easy to implement new features and fix bugs! Click here to see a [http://tinyurl.com/2vqypl list of Web Inspector bugs and feature requests]. 39 Most of the Web Inspector's code is HTML, JavaScript, and CSS—so it's very easy to implement new features and fix bugs! 40 41 [http://tinyurl.com/2vqypl List Web Inspector bugs and feature requests] 34 42 35 43 == Related Blog Posts ==