You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
431 B

(function() {
let newText = "%1";
const activeElement = document.activeElement;
activeElement.value = decodeURIComponent(escape(window.atob(newText)));
// Note: simulate input event on active element after set focus text.
// Some website need input event before submit form.
var event = document.createEvent('Event');
event.initEvent('input', true, true);
activeElement.dispatchEvent(event);
})();