Multiple Tab Handler / Copy URLs of select tabs

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

Shajirr

Multiple Tab Handler / Copy URLs of select tabs

Unread post by Shajirr » 2018-03-31, 10:13

I want to perform a simple action, copy the urls of the tabs which I selected.
Somehow, it is always a problem in every single browser, and never implemented natively, so I used Multiple Tab Handler on FF before.

However, none of the 2 version which are said to be compatible with Pale Moon work, with addon installed Ctrl or Shift clicking on tabs does nothing.

So, can this function be achieved via other addons in PM?

Copy URLs expert doesn't have this function.
Tab Utilities (Phoenix) has tab selection, but can't copy tab names of selected tabs, and Copy URLs expert doesn't add such an option.

JustOff

Re: Multiple Tab Handler / Copy URLs of select tabs

Unread post by JustOff » 2018-03-31, 13:28

Multiple Tab Handler 0.7.2014050101.1-signed works just fine with Pale Moon 27 after one line fix:

Code: Select all

--- content\multipletab\multipletab.js.orig	Wed Apr 30 22:52:24 2014
+++ content\multipletab\multipletab.js	Sat Mar 31 16:04:26 2018
@@ -4098 +4098 @@
-				let (parts = value.split('|')) {
+				let parts = value.split('|'); {
PS: Download XPI -> Rename to ZIP -> Extract multipletab.js -> Edit multipletab.js -> Replace multipletab.js in ZIP -> Rename to XPI -> Install.

Shajirr

Re: Multiple Tab Handler / Copy URLs of select tabs

Unread post by Shajirr » 2018-04-06, 19:58

JustOff wrote:Multiple Tab Handler 0.7.2014050101.1-signed works just fine with Pale Moon 27 after one line fix:

Code: Select all

--- content\multipletab\multipletab.js.orig	Wed Apr 30 22:52:24 2014
+++ content\multipletab\multipletab.js	Sat Mar 31 16:04:26 2018
@@ -4098 +4098 @@
-				let (parts = value.split('|')) {
+				let parts = value.split('|'); {
PS: Download XPI -> Rename to ZIP -> Extract multipletab.js -> Edit multipletab.js -> Replace multipletab.js in ZIP -> Rename to XPI -> Install.
Thanks, I did install the edited one, Ctrl+click works, but Shift does nothing, even though it is enabled in the options.

Strangely enough Shift started working after enabling it in Tab Utilities Phoenix options.
Last edited by Shajirr on 2018-04-06, 20:04, edited 2 times in total.

JustOff

Re: Multiple Tab Handler / Copy URLs of select tabs

Unread post by JustOff » 2018-04-07, 22:19

Shajirr wrote:Thanks, I did install the edited one, Ctrl+click works, but Shift does nothing, even though it is enabled in the options.
Try this extra patch:

Code: Select all

--- content\multipletab\multipletab.js.orig	Wed Apr 30 22:52:24 2014
+++ content\multipletab\multipletab.js	Sun Apr 08 01:14:58 2018
@@ -103 +103 @@
-		if (!(aXPathResult instanceof Ci.nsIDOMXPathResult)) {
+		if (typeof aXPathResult == 'string') {

Locked