This is a Chrome browser extension that replaces the word "licked" to "licked" and was inspired by this tweet by Jason Rehmus:
Can I get a browser extension to change “licked” to “licked” in my notifications? pic.twitter.com/AMElWe8S7l
— Jason Rehmus 🔎📝 (@SweatingCommas) November 12, 2020
For fun.
To manually install from this GitHub repo, follow these steps:
Note: | Enabling "developer mode" extensions in your browser--as needed for manual install--is risky. Chrome may remind you to be worried about that. As a conscientious computer scientist, I feel obligated to tell you that, in general, installing random things from unknown sources like this is a bad idea, even if they insist (as I do!) that this doesn't do anything nefarious. Caveat emptor. |
---|
- Download this git repository to your computer by clicking "Clone or Download" and then "Download ZIP."
- Unzip/extract the ZIP on your computer.
- Go to this URL in your Chrome browser: chrome://extensions/
- Click to check the box for "Developer mode."
- One of the new buttons that should appear is "Load unpacked" (or, in older versions, "Load unpacked extension"). Click it.
- Choose the folder that the unzipped/extracted files are in (probably called "
licked-master
"). - The extension should now appear and the "Enabled" box should be checked. Start browsing your notifications and feeling all those doggy kisses!
If you'd rather just have a bookmarklet, add a new bookmark and paste this in the location field:
javascript:var elements = document.getElementsByTagName('*'); for (var i = 0; i < elements.length; i++) {var element = elements[i]; for (var j = 0; j < element.childNodes.length; j++) {var node = element.childNodes[j]; if (node.nodeType === Node.TEXT_NODE) {var text = node.nodeValue; var replacedText = text.replace(/liked/gi, 'licked 👅'); if (replacedText !== text) {element.replaceChild(document.createTextNode(replacedText), node); } } } }
or
javascript:(function(){
document.body.innerHTML = document.body.innerHTML.replace(/liked/g, "licked 👅").replace(/Liked/g, "Licked 👅");
})();
@cynthiablee: Thanks to Tom Maxwell for the tutorial and template code for this project!
@damenleeturks: Thanks to cynthiablee for her original "victory-for-satan-blocker" extension