Thủ thuật tự động thay thế link ảnh cho website thiết kế bằng blogspot

Script tự động thay thế link ảnh có đuôi .blogspot thành dạng lh4.googleusercontent :

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<script type='text/javascript'>
//<![CDATA[
$("body img").each(function () {$(this).attr("src", $(this).attr("src").replace(/\/[0-9]+(\.bp\.blogspot)?/, "/lh4.googleusercontent")) });
//]]>
</script>

Script tự động thay thế tất link ảnh đang có bằng link ảnh khác :

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type='text/javascript'>
//<![CDATA[
$("body img").each(function () {$(this).attr("src", $(this).attr("src").replace("https://4.bp.blogspot.com/-Mpgs0kSln2I/WnRcTqvlOII/AAAAAAAAFh4/VTrxpLBIC7oxQi6xs2t6z0W2sV2h_zSiwCLcBGAs/w300-h225-p-k-no-nu/ignielcom-no-image.png", "https://1.bp.blogspot.com/-zqiPSBQqey4/YCDZbUrbwMI/AAAAAAAACmY/ibu38dnQswYJut1hsx5MBbTI9JpObyZ5QCLcBGAsYHQ/s300/RandomPost-blog-content-marketingZ4r1z1.png")) });
//]]>
</script>