Skip to content Skip to sidebar Skip to footer
Showing posts with the label Tampermonkey

How To Set The Event To Be Triggered First?

I want to inject the javascript code to the website by Tampermonkey(a browser plugin which can inje… Read more How To Set The Event To Be Triggered First?

Favicon Disappears After Preventing Execution Of A Specific Inline Script Tag By Tampemonkey

I use this code in Tampermonkey to prevent certain script tag from executing: https://stackoverflow… Read more Favicon Disappears After Preventing Execution Of A Specific Inline Script Tag By Tampemonkey

Prevent Default Single Click Event On Double Click On A Link In HTML

My code is pretty simple: var clickCount = 0, clickEl = []; var manualClick = false; $(document).on… Read more Prevent Default Single Click Event On Double Click On A Link In HTML