Is it possible to insert javascript into Google Chrome's "Inspect Element"?

Viewed 11454

If I click "Inspect Element" on a page in Google Chrome, is there a way for me to insert something like this (by clicking Edit HTML) to add a mouseover effect to the "a#link" element on the page?

$("a#link").mouseover(function() {
    $('div.linkcontents').slideDown("slow");
});
2 Answers
Related