Item logo image for Tab Porter - Export & Restore Chrome Windows

Tab Porter - Export & Restore Chrome Windows

Featured
4.7(

21 ratings

)
ExtensionFunctionality & UI2,000 users

4 support issues

  • All
  • Questions
  • Suggestions
  • Problems

MarcAntonio Awada

Dec 20, 2024

I can import using Tab porter

I did the extension of tab porter on Chrome; I exported my tabs successfully from my the browser on laptop 1 and when I tried to import on chrome on laptop 2 it only did few tabs and two windows out of 90 tabs and 5 windows. Please advise thank you

Joseph Wojciechowski

Nov 21, 2024

Modification of default output format.

Firstly thankyou for your great extension and appreciate the time and effort it takes to program. I had a go with AI to write my own but it not up to speed to even write the simple stuff without getting confused.

I am not a java programmer but know the basics in other languages and have used Gemini advanced to write this for me.

I have modified this function privately and it works for me.

function getFileName() {
var e = "Research1";
return $("#fileName").val() && (e = $("#fileName").val()),
e += "_TP_",
date = new Date,
e += date.getFullYear() + "_" + ("0" + (date.getMonth() + 1)).slice(-2) + "_" + ("0" + date.getDate()).slice(-2),
e += "_" + ("0" + date.getHours()).slice(-2) + "_" + ("0" + date.getMinutes()).slice(-2) + "_" + ("0" + date.getSeconds()).slice(-2),
e += ".html",
e
}

To this
function getFileName() {
var e = "Research";
$("#fileName").val() && (e = $("#fileName").val()); // This line seems to get a filename if it exists, otherwise it uses "Research"

date = new Date;
var formattedDate = date.getFullYear() +
("0" + (date.getMonth() + 1)).slice(-2) +
("0" + date.getDate()).slice(-2);

var formattedTime = ("0" + date.getHours()).slice(-2) +
("0" + date.getMinutes()).slice(-2) +
("0" + date.getSeconds()).slice(-2);

return formattedDate + " " + formattedTime  
+ " " + e + " by TP.html";
}

Producing an output filename in this format.

YYYYMMDD HHMMSS Research by TP.html

Where research is the default filename or the user entered filename.

Requests:-
1. Could you please incorporate an ability to select the output format into the extension.
The reason why I'm requesting this is I am working on help people and AI tools work in folders with files in a more logical manner where if they are working on a project people can follow the order of events like a history.

2. Another feature which no extension for chrome has, is double clicked it recreates the tabs in the open state. Maybe a custom file extension name to do this can be used.
Might make a popup that asks the user if they want them all open at once or just the list. I hope you can imagine how useful that would be.

Adam McMaster

Oct 4, 2024

Does not work with Incognito tabs

When exporting incognito tabs, they get imported into regular tabs

Mark Adler

Apr 17, 2022

boby?

The HTML ends with `<\boby>` instead of `<\body>`.

Google apps