[Feature Request] Option to always search using default browser

This extension snippet will add an action to search with Arc:

// #popclip
// name: Search with Arc
// icon: symbol:magnifyingglass
// language: javascript
let url = new URL("https://www.google.com/search");
url.searchParams.set("q", popclip.input.text);
popclip.openUrl(url.href, { app: "company.thebrowser.Browser" });

(The above block is an extension snippet — select it then click “Install Extension” in PopClip.)

I’ve set the extension’s icon to match the built in search icon so you can just disable that and use this instead and it will seem like it’s the built-in search.

The snippet uses Google search but can be modified for ay search engine.

4 Likes