Save changes made by content editable on any website
问题 The following code allows any website to be completely editable temporarily: document.body.contentEditable = "true"; If I want to save the settings made to a particular website using this method, how can I achieve this using Javascript and if needed PHP, so that next time I visit this URL, the website updates automatically with the settings made. Is this even possible? Is there an extension already available? 回答1: Here's a way you can do this using vanilla JS. Here's JSFiddle since