I've been working with the codes involving GM_getvalue and GM_setValue. I'd like to access data in my server through ajax.
I've been working with the codes involving GM_getvalue and GM_setValue. Stored data can be found in Storage located in Tampermonkey>Dashboard>Script>Storage. However, it could only be seen on one PC. I would like to access the data in my website/server. Are there any suggestions and codes to make it possible? Ajax perhaps?
if($("#name_full").html()){
$("#name_full").submit(function(){
var Fname = $("#firstname").val();
var Sname = $("#surname").val();
GM_setValue("datalogs",GM_getValue("name_full","")+Fname+" "+Sname +"<br/>");
});
}
I expect codes that can help me obtain these data via my website/server. Help :(