• Firefox Mozilla & Google Chrome saving settings (export settings, impor

    From david@21:1/5 to All on Sun Jan 21 05:00:45 2024
    XPost: alt.comp.software.firefox

    I have to re-install Chrome/Firefox from time to time for a variety of
    reasons unrelated to this question where I can only import/export
    bookmarks, but I'd like to be able to import/export all my settings.

    I'm not so concerned with "saved data" because I don't save any.
    That is, both browsers are always set up to remember nothing when closed.

    But after every install, I have to go through all the settings over & over.
    And over again.

    Is there a simple settings -> import/export for Firefox & Chrome?

    The question is how to save all the settings into a file for later import.
    Is it possible to save all settings for Chrome/Firefox into a file?

    What would be perfect would be to run this just before uninstalling.
    Export -> 20240121settings.txt

    And then just after re-installing, a command like this would be nice.
    Import -> 20240121settings.txt

    Bookmarks are a separate issue as they can already be exported/imported.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Big Al@21:1/5 to david on Sun Jan 21 08:18:25 2024
    XPost: alt.comp.software.firefox

    On 1/21/24 07:00 AM, david wrote:
    I have to re-install Chrome/Firefox from time to time for a variety of reasons unrelated to this question where I can only import/export
    bookmarks, but I'd like to be able to import/export all my settings.

    I'm not so concerned with "saved data" because I don't save any.
    That is, both browsers are always set up to remember nothing when closed.

    But after every install, I have to go through all the settings over & over. And over again.

    Is there a simple settings -> import/export for Firefox & Chrome?

    The question is how to save all the settings into a file for later import.
    Is it possible to save all settings for Chrome/Firefox into a file?

    What would be perfect would be to run this just before uninstalling.
    Export -> 20240121settings.txt

    And then just after re-installing, a command like this would be nice.
    Import -> 20240121settings.txt

    Bookmarks are a separate issue as they can already be exported/imported.
    With Firefox not running, if you make a backup of prefs.js in you
    profile, then look through it for the small settings, not items like
    times of last sync and such but items like 'dont ask when closing
    multiple tabs. And put them all into a user.js file.

    On a reload you put the user.js into your profile before startup and it
    will become part of your prefs.js when FF runs.

    I have no ideas on Chrome, you say "Chrome/Firefox".

    Here is what I've cultivated in my user.js:

    user_pref("widget.non-native-theme.scrollbar.style", 4); user_pref("accessibility.blockautorefresh", true); user_pref("browser.aboutConfig.showWarning", false); user_pref("browser.backspace_action", 1); user_pref("browser.bookmarks.showMobileBookmarks", true); user_pref("browser.ctrlTab.sortByRecentlyUsed", true); user_pref("browser.newtabpage.activity-stream.showSponsored", false); user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites",
    false);
    user_pref("browser.newtabpage.activity-stream.topSitesRows", 2); user_pref("browser.startup.homepage", "ak.x10.mx/index.html"); user_pref("browser.toolbars.bookmarks.visibility", "always"); user_pref("browser.warnOnQuitShortcut", false); user_pref("datareporting.healthreport.uploadEnabled", false); user_pref("devtools.chrome.enabled", true); user_pref("devtools.debugger.prompt-connection", false); user_pref("devtools.debugger.remote-enabled", true); user_pref("devtools.dom.enabled", true); user_pref("extensions.formautofill.addresses.enabled", false); user_pref("extensions.formautofill.creditCards.enabled", false); user_pref("general.smoothScroll", true); user_pref("layout.css.scrollbar-width-thin.disabled", true); user_pref("network.prefetch-next", false); user_pref("widget.non-native-theme.scrollbar.style", 4);

    Some of them like browser.aboutConfig.showWarning, are obvious, that's
    the "are you sure?" question when you open about:config.

    You can look at about:config and check the "show only changes" and you
    get a list of everything that you OR the system changed. Might give you
    some more ideas. The list above is not complete.

    But this is a very manual process. If you change a new setting down the
    line, you have to remember to put it into your saved user.js file
    (that's not in your profile but some place else as backup).

    At least that's what I do. Also I have firefox sync setup and it syncs
    my bookmarks, history, and settings to the cloud. On a fresh reload I
    just turn on sync again and everything comes back. The user.js is just
    some of the minor annoyance settings I don't think are in sync.
    --
    Linux Mint 21.2 Cinnamon
    Al

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From knuttle@21:1/5 to david on Sun Jan 21 13:59:12 2024
    XPost: alt.comp.software.firefox

    On 01/21/2024 7:00 AM, david wrote:
    I have to re-install Chrome/Firefox from time to time for a variety of reasons unrelated to this question where I can only import/export
    bookmarks, but I'd like to be able to import/export all my settings.

    I'm not so concerned with "saved data" because I don't save any.
    That is, both browsers are always set up to remember nothing when closed.

    But after every install, I have to go through all the settings over & over. And over again.

    Is there a simple settings -> import/export for Firefox & Chrome?

    The question is how to save all the settings into a file for later import.
    Is it possible to save all settings for Chrome/Firefox into a file?

    What would be perfect would be to run this just before uninstalling.
    Export -> 20240121settings.txt

    And then just after re-installing, a command like this would be nice.
    Import -> 20240121settings.txt

    Bookmarks are a separate issue as they can already be exported/imported.
    First I have never used Chrome.

    With Firefox; if you uninstall it from the Control Panel, Uninstall
    programs (ie Windows Uninstall); it uninstalls only the program in
    C:Program Files. It does not remove the data in C:\Users\"userID"\AppData\Roaming\Mozilla\Firefox. This folder contains
    all of the bookmarks, history, and personal setting that you made to
    Firefox.

    If you are installing on a new disk, or one that has been wiped clean,
    download and install the Firefox program. The copy the Profile folder
    from the old disk to the Profile folder on the new disk.

    With this transfer of the Profile folder your new installation will have
    the same settings as the old installation. This is much simpler than reentering all of your setting in the new installation

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to knuttle on Sun Jan 21 15:14:33 2024
    XPost: alt.comp.software.firefox

    On 1/21/2024 1:59 PM, knuttle wrote:
    On 01/21/2024 7:00 AM, david wrote:
    I have to re-install Chrome/Firefox from time to time for a variety of
    reasons unrelated to this question where I can only import/export
    bookmarks, but I'd like to be able to import/export all my settings.

    I'm not so concerned with "saved data" because I don't save any.
    That is, both browsers are always set up to remember nothing when closed.

    But after every install, I have to go through all the settings over & over. >> And over again.

    Is there a simple settings -> import/export for Firefox & Chrome?

    The question is how to save all the settings into a file for later import. >> Is it possible to save all settings for Chrome/Firefox into a file?

    What would be perfect would be to run this just before uninstalling.
    Export -> 20240121settings.txt

    And then just after re-installing, a command like this would be nice.
    Import -> 20240121settings.txt

    Bookmarks are a separate issue as they can already be exported/imported.
    First I have never used Chrome.

    With Firefox; if you uninstall it from the Control Panel, Uninstall programs (ie Windows Uninstall);  it uninstalls only the program in C:Program Files. It does not remove the data in C:\Users\"userID"\AppData\Roaming\Mozilla\Firefox.  This folder
    contains all of the bookmarks, history, and personal setting that you made to Firefox.

    If you are installing on a new disk, or one that has been wiped clean, download and install the Firefox program.  The copy the Profile folder from the old disk to the Profile folder on the new disk.

    With this transfer of the Profile folder your new installation will have the same settings as the old installation.  This is much simpler than reentering all of your setting in the new installation

    about:profiles

    is handy.

    [Picture]

    https://i.postimg.cc/dtMXztPc/root-profile-folders-on-FF.gif

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Big Al@21:1/5 to The Real Bev on Sun Jan 21 14:49:19 2024
    XPost: alt.comp.software.firefox

    On 1/21/24 01:53 PM, The Real Bev wrote:
    On 1/21/24 4:00 AM, david wrote:
    I have to re-install Chrome/Firefox from time to time for a variety of
    reasons unrelated to this question where I can only import/export
    bookmarks, but I'd like to be able to import/export all my settings.

    I'm not so concerned with "saved data" because I don't save any.
    That is, both browsers are always set up to remember nothing when closed.

    But after every install, I have to go through all the settings over &
    over.
    And over again.

    Is there a simple settings -> import/export for Firefox & Chrome?

    The question is how to save all the settings into a file for later
    import.
    Is it possible to save all settings for Chrome/Firefox into a file?

    What would be perfect would be to run this just before uninstalling.
    Export -> 20240121settings.txt

    And then just after re-installing, a command like this would be nice.
    Import -> 20240121settings.txt

    Bookmarks are a separate issue as they can already be exported/imported.

    I don't do updates any more and I'm using linux.  I don't know if
    windows will work the same way because I don't care about browsing on my windows machine.

    I install the new version into its own subdirectory, allowing it to
    create its own profile.  Then I shut down all firefoxes and force-copy
    the contents of my old profile into the newly-created profile.

    This will reproduce ALL your current settings, extensions, history etc.

    Then you can start each version from within its own subdirectory and it
    will use the profile that matches -- or at least the last one you
    selected, so don't make a mistake.  You probably won't want to use
    previous versions unless the one you just created goes dreadfully wrong,
    but if you want this option you'll need to create shortcuts for previous versions -- an exercise for the reader.

    I export my bookmarks to an easily-accessible .html file and make that
    file my home page.  You can just do an export every once in a while to
    keep it current.  If you have a lot of bookmarks it's much faster than opening up the regular 'bookmarks' function.


    If you set browser.bookmarks.autoExportHTML = true in about:config
    Firefox will export the HTML on every exit.
    --
    Linux Mint 21.2 Cinnamon
    Al

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)