How to replace image links with img src url in Greasemonkey

前端 未结 2 478
南方客
南方客 2021-01-23 23:28

From the title this may sound like a duplicate question. But what I am asking for is help writing a Greasemonkey script that takes all images containing the word \"thumbnails\"

2条回答
  •  再見小時候
    2021-01-24 00:18

    img tags cant have href, however you can append them into an anchor tag with href attribute:

    for(var iImage=0;iImage' 
                                  + document.images[iImage].outerHTML + '';
    
        }
    }
    

提交回复
热议问题