📅  最后修改于: 2022-03-11 15:02:03.745000             🧑  作者: Mango
// Paste into the JS console on the page in question
var allowPaste = function(e){
e.stopImmediatePropagation();
return true;
};
document.addEventListener('paste', allowPaste, true);