I am interested in creating a Chrome extension which can manipulate some of the content of specific webpages..
I want to replace something like this:
<td class="Data">Phone:</td>
with something like this:
<span title="Telephone number including area code."><td class="Data">Phone:</td></span>
The reason for this is to add hover-over or tool-tip text to certain parts of an existing website.
Is this possible with a Chrome extension? If so, how could this be done? Thank you.