Skip to content
This repository was archived by the owner on Jan 8, 2019. It is now read-only.

Feature Req: Add Yandex reverse image search #7

Open
EC-O-DE opened this issue Oct 17, 2017 · 1 comment
Open

Feature Req: Add Yandex reverse image search #7

EC-O-DE opened this issue Oct 17, 2017 · 1 comment

Comments

@EC-O-DE
Copy link

EC-O-DE commented Oct 17, 2017

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
Copy link
Author

EC-O-DE commented Apr 18, 2018

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: "aleksey@fedoseev.net"},
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 );
}
});

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant