feat(web): add arxiv prefixes to launcher web config

This commit is contained in:
Ashley Wulber 2022-03-08 19:59:55 -05:00 committed by GitHub
parent eb6028f8fc
commit d17acbd9ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,6 +103,22 @@
matches: ["wiki"],
queries: [(name: "Wikipedia", query: "wikipedia.org/w/index.php?search=")]
),
(
matches: ["xaut", "arxauth", "arxivauthor"],
queries: [(name: "ArXiv", query: "https://arxiv.org/search/?searchtype=author&source=header&query=")]
),
(
matches: ["xtit", "arxtit", "arxivtitle"],
queries: [(name: "ArXiv", query: "https://arxiv.org/search/?searchtype=title&abstracts=show&order=-announced_date_first&size=50&query=")]
),
(
matches: ["xabs", "arxabs", "arxivabstract"],
queries: [(name: "ArXiv", query: "https://arxiv.org/search/?searchtype=abstract&abstracts=show&order=-announced_date_first&size=50&query=")]
),
(
matches: ["xnum", "arxnum", "arxivnumber"],
queries: [(name: "ArXiv", query: "https://arxiv.org/abs/")]
),
(
matches: ["yh", "yahoo"],
queries: [(name: "Yahoo!", query: "search.yahoo.com/search?p=")]
@ -112,4 +128,5 @@
queries: [(name: "YouTube", query: "youtube.com/results?search_query=")]
),
]
)
)