Skip to content

Instantly share code, notes, and snippets.

@vibragiel
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vibragiel/10368913 to your computer and use it in GitHub Desktop.
Save vibragiel/10368913 to your computer and use it in GitHub Desktop.
Bookmarklet to show handy copyable emoticons. External maintained version.

#Look Of Disapproval bookmarklet

This bookmarklet shows the look of disapproval emoticon, plus a bunch of other handy ones. It's based on maciak's bookmarklet, but uses an alert() instead.

Create a bookmark in your bookmarks toolbar and paste the following code into the URL/Location field:

javascript: (function () {
  var jsCode = document.createElement('script');
  jsCode.setAttribute('src', 'https://gist.githubusercontent.com/vibragiel/10368913/raw/ae08f049ae42bfd7394eb87dbcf8b4e0dff38f67/showEmoticos.js');
  document.body.appendChild(jsCode);
}());
alert("ಠ_ಠ\nಠ_ರೃ\nಥ_ಥ\nಥ◡ಥ\nಠ╭╮ಠ\n⊙▃⊙\n(╯°□°)╯︵ ┻━┻\n¯\_(ツ)_/¯\n(╥﹏╥)\n◉‿◉");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment