list for sites to use img tags
|
|
How about if the source code had an easily editable list of sites that had images open in an img tag.
= the image link opens a tab of garbage characters.
<img src=http://img.blogs.yahoo.co.jp/ybi/1/e5/30/komagabayashi/folder/647990/img_647990_7541949_0?1122338078> (the image should be right below vvvvv if it doesn't appear - hell if I know why...)
|
|
|
I've implemented the requested feature. var sites = new Array( // /.*/, // CATCH ALL rule /^http:\/\/(\d\.)?bp\d?\.blog(spot|ger)\.com\//, /^http:\/\/img(\d)?\.blogs\.yahoo\.co\.jp\// ); You can find the sites array at the beginning of the script code. You currently have to use regular expressions to describe the hosts for which the workaround should be used.
|