Selected Search Plus 0.1.1

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
horna12
Posts: 3
Joined: January 15th, 2015, 10:28 am

Selected Search Plus 0.1.1

Post by horna12 »

Is there any easy way to make this addon -

https://addons.mozilla.org/fi/firefox/a ... arch-plus/

to open it's search results in a new window instead of tabs?
morat
Posts: 6437
Joined: February 3rd, 2009, 6:29 pm

Re: Selected Search Plus 0.1.1

Post by morat »

You would need to hack the extension.

* edit chrome\content\selectedsearch.js

Code: Select all

  case 1: // Open in current tab
-   gBrowser.loadURIWithFlags(params.searchUrl, null, null, null, params.postData);
+   openUILinkIn(params.searchUrl, "window", null, params.postData, null);

view-source:chrome://selectedsearch/content/selectedsearch.js
Post Reply