[source:feat] DuckDuckGo 'show more' binding

`]]` shows more results in a DuckDuckGo search page
This commit is contained in:
Maddison Hellstrom 2019-06-21 13:04:05 -07:00
parent 5c88a51204
commit d2088dadab
1 changed files with 6 additions and 0 deletions

View File

@ -175,6 +175,12 @@ const maps = {
description: "Open search result (non-active new tab)", description: "Open search result (non-active new tab)",
callback: actions.createHint(".result__a", actions.openAnchor({ newTab: true, active: false })), callback: actions.createHint(".result__a", actions.openAnchor({ newTab: true, active: false })),
}, },
{
leader: "",
alias: "]]",
description: "Show more results",
callback: () => document.querySelector(".result--more__btn").click(),
},
], ],