चर्चा » बनवण्याच्या विनंत्या

can i make tamper monkey save console logs (firefox) into a file every refreash or into a big file

§
पोस्ट केले: 2022-03-13

need help

§
पोस्ट केले: 2022-03-13
संपादित केले: 2022-03-13

Looking this might help https://stackoverflow.com/questions/13763361/get-console-history

Then download the logs using this code
const link = document.createElement("a"); //Creates a new link element
link.href = "data:text/plain;charset=utf-8," + 'browser console logs'; //The browser logs goes here
link.download = 'logs'; //Add the file name and download to the link element
link.click(); //Click on the link element

उत्तर पोस्ट करा

उत्तर पोस्ट करण्यासाठी साइन इन करा.