- Open stylus manager page
- F12
- Paste this script in the console
Or add this snippet. Then Ctrl + Enter
async function deleteStyle() { const deleteBtn = document.querySelector('p.actions > a.delete'); if (!deleteBtn) { return false } deleteBtn.click(); await new Promise((resolve) => setTimeout(() => { document.querySelector('#message-box-buttons > button:nth-child(1)').click(); resolve(); }, 10), ); return true; } async function main() { while (deleteStyle()) { await new Promise((resolve) => setTimeout(resolve, 100)); } } main();
Last active
November 10, 2024 11:51
-
-
Save KevinNitroG/35df1b7168a5b509258c02b1698921ad to your computer and use it in GitHub Desktop.
Delete all stylus styles
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment