mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
4 lines
149 B
JavaScript
4 lines
149 B
JavaScript
|
|
var inputs = document.getElementsByTagName("input");
|
||
|
|
for (var input, i = 0; input = inputs[i]; ++i)
|
||
|
|
if ("submit" == input.type)
|
||
|
|
input.click();
|