Click if someone nearby
What is a bookmarklet?
A bookmarklet is a bookmark stored in a web browser that contains JavaScript commands that add new features to the browser. They are stored as the URL of a bookmark in a web browser or as a hyperlink on a web page. Bookmarklets are usually small snippets of JavaScript executed when user clicks on them. When clicked, bookmarklets can perform a wide variety of operations
How to add bookmarklets
First, copy the JavaScript which is provided below and add it to your clipboard. Then click the bookmark button on the top of your browser(it should look like a a star). After, press "more..." which is on the bottom left of the bookmark menu. When this is pressed, paste the JavaScript into the URL bar that is below the name bar and save it. Now that you have your bookmarklet setup, press on the bookmark and use it as you please :)
Dev Console:
JavaScript Code:(function()%7B(function()%20%7Bvar%20x%20%3D%20document.createElement(%22script%22)%3Bx.src%20%3D%20%22https%3A%2F%2Fcdn.jsdelivr.net%2Fgh%2FSnowLord7%2Fdevconsole%40master%2Fmain.js%22%3Bx.onload%20%3D%20alert(%22Loaded%20Developer%20Console!%22)%3Bdocument.head.appendChild(x)%3B%7D)()%7D)()
Auto Clicker:
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); })();
Proxy:
javascript:((function(){ var a,b,c;c="https://bing.com", b=document.createElement("iframe"), b.setAttribute("src",c),b.setAttribute("id","rusic-modal"), b.setAttribute("style","position: fixed; width: 100%; height: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999999999; background-color: #fff;"), a=document.getElementsByTagName("body")[0], a.appendChild(b)})).call(this)
Tab Cloaker 🤫
javascript: const changeFavicon=e=>{let n=document.querySelector('link[rel="icon"]');null!==n?n.href=e:((n=document.createElement("link")).rel="icon",n.href=e,document.head.appendChild(n))}; javascript: var url = prompt("enter url", "https://google.com/favicon.ico"); javascript:(function(){var title=prompt("New title?");document.title=title})(); changeFavicon(url);
Unblock Any Youtube Video:
javascript:(function () {if (window.location.toString().includes('www.youtube.com/watch?v%27))%20{%20window.open(%27https://www.youtube-nocookie.com/embed/%27%20+%20window.location.toString().split(%27=%27)[1])%20}})()
Nuke The Page:
javascript:var KICKASSVERSION='2.0';var s = document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='//hi.kickassapp.com/kickass.js';void(0);