Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name image search
- // @namespace image search
- // @include *
- // ==/UserScript==
- document.addEventListener('click', function(event) {
- if(!event.shiftKey || !event.altKey)
- return;
- img = event.target;
- if(img.localName != "IMG")
- {
- var child = document.evaluate(".//img",
- img, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
- if(!child)
- {
- GM_log("no image\n");
- return;
- }
- img = child;
- }
- GM_openInTab("http://haruhidoujins.yi.org/mi-search.php?url=" + img.src);
- event.stopPropagation();
- event.preventDefault();
- }, true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement