Created
February 5, 2014 09:33
-
-
Save juzam/8820084 to your computer and use it in GitHub Desktop.
Get all links in a page Bookmarklet, adapted from: http://forums.mozillazine.org/viewtopic.php?p=2190545#p2190545
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:x=document.getElementsByTagName(%22A%22); | |
y=window.open(); | |
y.document.write(%22<HTML><HEAD></HEAD><BODY><table>%22); | |
for(n=0;n<x.length;n++){ | |
y.document.write(%22<tr><td>%22+x[n].href+%22</td></tr>%22); | |
} | |
y.document.write(%22</table></BODY></HTML>%22); | |
y.document.close(); | |
void 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment