This site is currently outdated! Join our Discord Server for the new site, links and updates!
How to use a bookmarklet:
1. Copy the code of your choice
2. Make a bookmark (Don't set url and stuff yet)
3. Name the Bookmarklet
4. Paste the copied code, into the URL category of the 'Create a Bookmarklet' window
5. Done.
Tab Cloaking
Code:
javascript:(function () {document.title=prompt('Netcade Tab Cloak\n\nEnter new Tab Title:');var icon=document.querySelector('link[rel='icon']');switch(prompt('Choose new tab icon:\n\n[1] Google Search\n[2] Google Drive\n[3] Custom URL')){case'1':icon.setAttribute('href','https://www.google.com/favicon.ico');break;case'2':icon.setAttribute('href','https://ssl.gstatic.com/images/branding/product/2x/hh_drive_96dp.png');break;case'3':icon.setAttribute('href',prompt('Enter Custom Tab Icon URL:'))}})()
GoGuardian Can't Close Tab
Code:
javascript:(function () {window.onbeforeunload = function() { return 1; };})()
AutoClicker
Code:
javascript:(function() { var clickerIsMouseDown = false; var clickerCurrentMouseTarget = document.body; document.body.addEventListener('mouseup', () => { clickerIsMouseDown = false; }); document.body.addEventListener('mousedown', () => { clickerIsMouseDown = true; }); document.body.addEventListener('mousemove', (e) => { clickerCurrentMouseTarget = e.target }); setInterval(() => { if (clickerIsMouseDown) clickerCurrentMouseTarget.click(); }, 0); })();
Inspect Element
Code:
javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; document.body.appendChild(script); script.onload = function () { eruda.init() } })();