Monday, January 5th, 2009
Extending WebKit’s Web Inspector a la Firebug
<p>Alvaro Videla has a fun post on extending the WebKit Web Inspector with something a little strange.... a game:
Alvaro walks through how to take some JavaScript/CSS/HTML and plug it into the inspector world (normally hidden somewhere like /Applications/WebKit.app/Contents/Frameworks/10.5/WebCore.framework/Versions/A/Resources/inspector) and adding panels (e.g. see the new game panel here:)
-
-
this.panels = {
-
elements: new WebInspector.ElementsPanel(),
-
resources: new WebInspector.ResourcesPanel(),
-
scripts: new WebInspector.ScriptsPanel(),
-
profiles: new WebInspector.ProfilesPanel(),
-
databases: new WebInspector.DatabasesPanel(),
-
game: new WebInspector.GamePanel()
-
};
-
Related Content:











Leave a comment