Συζητήσεις » Αιτήματα Δημιουργίας

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

§
Δημοσιεύτηκε: 13/03/2022

need help

§
Δημοσιεύτηκε: 13/03/2022
Επεξεργάστηκε: 13/03/2022

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

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.

长期地址
遇到问题?请前往 GitHub 提 Issues。