views:

102

answers:

3

How can I change a page with this html code :

   <tr>
    <td nowrap title="7884">Ontem foi dia de</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td align="right">6,0</td></tr>
   <tr>

to this one using greasemonkey :

    <tr>
    <td title="7884" nowrap="nowrap">ontem foi dia de</td>
    <td>&nbsp;</td>
    <td title="aprovadissimo" align="center" bgcolor="#ff8888">A</td>
    <td title="Treze" align="center" bgcolor="#88ff88">13</td>
    <td>&nbsp;</td>
    <td bgcolor="#88ff88">Aprovado</td>
    <td align="right">6,0</td></tr>
   <tr>
A: 

How are you determining which table cells should have which certain values in them? What are the rules you're going to have for this?

meder
How about use comments to ask such questions?
Artem Barger
what ? I just want to change them no rules.
+1  A: 

have a look at http://diveintogreasemonkey.org/ and see about writing GreaseMoney Scripts

AutomatedTester
tahts the first thing I did but no luck
A: 

No one has an idea how to do it ?