I have a question on how to change web pages with the Chrome extension.
After reading some information, I think the question is how to manipulate the DOM. Let's say I open www.stackoverflow with Chrome and want to replace the following line of code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
and replace it with:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
My question is not that this is a smart thing, but how to do it?
Citizen SP
source share