Initial commit

This commit is contained in:
James Edington 2020-03-01 15:06:43 -06:00
commit f851d4941d

View File

@ -0,0 +1,14 @@
// ==UserScript==
// @name Auto-Acknowledge Steam URL Filter
// @namespace .xyz.ishygddt
// @include https://steamcommunity.com/linkfilter/?url=*
// @version 0.0.1
// @run-at document-end
// ==/UserScript==
l=document.getElementsByClassName('url');
if(l.length==1)
if(confirm(l[0].textContent))
document.getElementById('proceedButton').click();