I want to change .jpg or .png to .jpg:orig or .png:orig with greasemonkey ex.https://pbs.twimg.com/media/DMU-nlSV4AAom3a.jpg to https://pbs.twimg.com/media/DMU-nlSV4AAom3a.jpg:orig
// ==UserScript==
// @name Twitter Orig jpg
// @namespace jirat
// @include https://pbs.twimg.com/*
// @include https://pbs.twimg.com/media/*
// @version 1
// @grant none
// ==/UserScript==
document.location.replace(document.location.href.replace(/.jpg/,'.jpg:orig'));
but when it run, it won't stop. It keep going repleace like this
[.jpg:orig:orig:orig:orig]
How can I fix this.