MCPcopy Create free account
hub / github.com/hoothin/UserScripts / getResult

Function getResult

MoreSteamRatings/MoreSteamRatings.user.js:110–120  ·  view source on GitHub ↗
(url,callBack)

Source from the content-addressed store, hash-verified

108}
109
110function getResult(url,callBack){
111 GM_xmlhttpRequest({
112 method: 'GET',
113 url: url,
114 onload: function (d) {
115 let doc = document.implementation.createHTMLDocument('');
116 doc.documentElement.innerHTML = d.responseText;
117 callBack(doc);
118 }
119 });
120}

Callers 3

getMcScoreFunction · 0.85
getGsScoreFunction · 0.85
getGrScoreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected