I use both Arc and Edge, however when I search for something in Edge I would like the results to open in Arc (since I prefer search to open in little Arc) rather than in a new tab in Edge. Is this possible? Thanks!
2 Likes
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