O abaixo é uma resposta parcial e incompleta para a pergunta, pois só funciona para pesquisas de palavras simples.
This can be done directly from Chrome's Manage search engines tool in the Settings. You should add a new search engine, and provide the URL
http://arxiv.org/find/all/1/all:+AND+%s/0/1/0/all/0/1
I use
arxiv
as the keyword, which allows me fairly direct access: typingarxiv
and then space will get me to the search mode, whereasarxiv
and then tab will send me to arxiv.org.
O motivo é que %s
mudará todos os espaços para %20
s. Em vez disso, o comportamento desejado é bastante complicado:
- Por dois termos, por exemplo
two terms
, a string desejada étwo+terms
. - Por mais de dois termos, por exemplo
more than two terms
, a string desejada éterms+AND+two+AND+more+than
.