Steam2SteamDB

Imports Steam Wishlist to SteamDB Watchlist, albeit very slowly. Instructions below.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Tác giả
SelfAfflicted
Cài đặt hàng ngày
0
Số lần cài đặt
9
Đánh giá
0 0 0
Phiên bản
0.1
Đã tạo
21-07-2023
Đã cập nhật
21-07-2023
Kích thước
2 KB
Giấy phép
MIT
Áp dụng cho

Copy the following code into a text editor and save as an html

<!doctype html>
<html>
<head>
<title>Open Windows</title>
<script>
function openWindow(){
    var x = document.getElementById('a').value.split('\n');
    atTime = 0;
    for (var i = 0; i < x.length; i++) {
      if (x[i].indexOf('.') > 0) {
        site = x[i];
        if (x[i].indexOf('://') < 0) { site = 'https://' + x[i]; }
        setTimeout("window.open('" + site + "')", atTime);
        atTime += 20000;
      }
    }
}
</script>
<style>
html, body
{
    height : 99%;
    width  : 99%;
}

textarea
{
    height : 80%;
    width  : 90%;
}
</style>
</head>
<body>
<textarea id="a"></textarea>
<br>
<input type="button" value="Open Windows" onClick="openWindow()">
<input type="button" value="Clear" onClick="document.getElementById('a').value=''">
</body>
</html>

Using the Augmented Steam extension, export your wishlist as text type with the following text format:

https://steamdb.info/app/%appid%

Click copy to clipboard.

Open and paste links in the text box from the previously created html file, click the Open Window button, and let the magic begin.

If your browser warns or blocks any pop-ups created by the local html file, enable/allow them, or this will not work.

To change the delay time to open links, edit the line in the html code:

atTime += 20000;
The number is in milliseconds, so 20000 is 20 seconds, 1000ms is 1 second.