GoogleImageShell icon indicating copy to clipboard operation
GoogleImageShell copied to clipboard

Feature Req: Add Yandex reverse image search

Open EC-O-DE opened this issue 8 years ago • 1 comments

Yandex? It's very good image reverse engine. Usually Google finds more sizes better, but Yandex is better at providing similar images.

EC-O-DE avatar Oct 17 '17 07:10 EC-O-DE

to search from Yandex it's something like this:

/* This is the Yandex image search command. */ CmdUtils.CreateCommand({ name: "ya-image", takes: {"text": noun_arb_text}, icon: "http://images.yandex.ru/favicon.ico", homepage: "http://images.yandex.ru", author: {name: "Alexey Fedoseev", email: "[email protected]"}, license: "GPL", description: "Yandex images search", execute: function(input) { var location = input.text; var url = "http://images.yandex.ru/yandsearch?text="; url += encodeURIComponent(location); Utils.openUrlInBrowser( url ); } });

EC-O-DE avatar Apr 18 '18 14:04 EC-O-DE