Tools

Unblur Bookmarklet: Removes the blur from the search results on sites like thatsthem, Intelius, zabasearch, etc.

To Use Just drag the bookmarklet to your menu bar. Once your encountered blurred content, just click the bookmarklet to reveal the obfuscated content.

0:00
/0:21

WP_User Bookmarklet: Lists usernames of the WordPress website that you are currently viewing. Note: Does not work on all WordPress websites due to different configurations.

To Use: Create a new bookmark in your browser and add the following code in the URL section. (I discovered that the Ghost blogging platform breaks the following javascript when placed in a button URL.)

javascript:(function(){const url=window.location.origin+"/wp-json/wp/v2/users?per_page=100";fetch(url).then(r=>r.json()).then(data=>{if(!Array.isArray(data)){alert("No users found or API blocked.");return;}const slugs=data.map(u=>u.slug).join("\n");alert("User slugs:\n"+slugs);console.log("User slugs:",slugs);}).catch(err=>alert("Error: "+err));})();
0:00
/0:15