keyFinder icon indicating copy to clipboard operation
keyFinder copied to clipboard

Keyfinder can inject data into pages.

Open themolco opened this issue 6 years ago • 0 comments

https://github.com/momenbasel/keyFinder/blob/677634c030f424ef534459f8c4f427e1b53d68d8/js/results.js#L39

If a two cell table is created on a page and a row in that table only has one cell, a new cell is created by keyfinder and prints the results of the variable "counter". ex:

<table>
    <tr>
        <td>something</td>
        <td>something else</td>
    </tr>
    <tr>
        <td>something</td>
    </tr>
</table>

becomes (when rendered)

<table>
    <tr>
        <td>something</td>
        <td>something else</td>
    </tr>
    <tr>
        <td>1</td>
        <td>something</td>
    </tr>
</table>

themolco avatar Sep 29 '19 00:09 themolco