Skip to content

Instantly share code, notes, and snippets.

@jareha
Last active April 15, 2024 01:47
Show Gist options
  • Save jareha/9009d11e344167014b0de568f41ab577 to your computer and use it in GitHub Desktop.
Save jareha/9009d11e344167014b0de568f41ab577 to your computer and use it in GitHub Desktop.
Bookmarklet to show entries from Green’s Dictionary of Slang
/* jshint esversion: 8 */
(function () {
const fallback = null;
const keyword = "%s";
const service = "https://greensdictofslang.com/";
if (keyword !== "" || keyword !== "%" + "s") {
window.location = `${service}search/basic?q=${keyword}`;
} else {
window.location = fallback || service;
}
})();
// javascript:(function(){const fallback=null;const keyword="%s";const service="https://greensdictofslang.com/";if(keyword!==""||keyword!=="%s"){window.location=`${ service }search/basic?q=${ keyword }`}else{window.location=fallback||service}})();
// Minified at https://duckduckgo.com/?q=javascript+minifier
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment