simple-tab-groups icon indicating copy to clipboard operation
simple-tab-groups copied to clipboard

Remove archived groups from toolbar menu

Open dnacombo opened this issue 2 years ago • 8 comments

When I archive a group, because I'm done with it and I have too many groups, it keeps popping up at the top of my list.

image

In the manage groups tab, however, they don't appear until I click show archived groups.

I'd like to be able to prevent archived groups from showing up in the toolbar menu.

dnacombo avatar Sep 18 '23 15:09 dnacombo

Related to #583 , but I don't entirely follow reason for not implementing this on dropdown menu. Seems to it could be done on dropdown menu (code is there, just commented out looks like). If you want to UNarchive a group you would have to go to 'Manage Groups' tab and tick 'show archived groups' and then chose 'unarchive' on the desired group.

I don't see why the archived groups would need to be listed in the dropdown? As it is, archiving groups doesn't do anything useful to me as they still clutter my somewhat long dropdown :)

fpostma72 avatar Jan 09 '24 19:01 fpostma72

You can fix this by running window.localStorage.setItem("showArchivedGroupsInPopup", false) in the console for the manage groups window which will disable it (you can enable it by doing window.localStorage.setItem("showArchivedGroupsInPopup", true))

NullTxt avatar Feb 22 '24 15:02 NullTxt

You can fix this by running window.localStorage.setItem("showArchivedGroupsInPopup", false) in the console for the manage groups window which will disable it (you can enable it by doing window.localStorage.setItem("showArchivedGroupsInPopup", true))

Hmm.. trying that command in console window on Group Manage tab gives me an error and also doesn't seem to have effect (even tried a restart of browser);

Error in console (ctrl-shift-J when Manage Group window active) :

window.localStorage.setItem("showArchivedGroupsInPopup", false) Uncaught NS_ERROR_NOT_AVAILABLE: debugger eval code:1 getEvalResult resource://devtools/server/actors/webconsole/eval-with-debugger.js:300 evalWithDebugger resource://devtools/server/actors/webconsole/eval-with-debugger.js:212 evaluateJS resource://devtools/server/actors/webconsole.js:949 evaluateJSAsync resource://devtools/server/actors/webconsole.js:846 makeInfallible resource://devtools/shared/ThreadSafeDevToolsUtils.js:103 debugger eval code:1:1

This with FF 122.0.1 64-bit and STG Version 5.2 Last Updated 3 September 2023

fpostma72 avatar Feb 22 '24 19:02 fpostma72

You can fix this by running window.localStorage.setItem("showArchivedGroupsInPopup", false) in the console for the manage groups window which will disable it (you can enable it by doing window.localStorage.setItem("showArchivedGroupsInPopup", true))

Hmm.. trying that command in console window on Group Manage tab gives me an error and also doesn't seem to have effect (even tried a restart of browser);

Error in console (ctrl-shift-J when Manage Group window active) :

window.localStorage.setItem("showArchivedGroupsInPopup", false) Uncaught NS_ERROR_NOT_AVAILABLE: debugger eval code:1 getEvalResult resource://devtools/server/actors/webconsole/eval-with-debugger.js:300 evalWithDebugger resource://devtools/server/actors/webconsole/eval-with-debugger.js:212 evaluateJS resource://devtools/server/actors/webconsole.js:949 evaluateJSAsync resource://devtools/server/actors/webconsole.js:846 makeInfallible resource://devtools/shared/ThreadSafeDevToolsUtils.js:103 debugger eval code:1:1

This with FF 122.0.1 64-bit and STG Version 5.2 Last Updated 3 September 2023

Does this help?

supercoolspy avatar Feb 22 '24 20:02 supercoolspy

You can fix this by running window.localStorage.setItem("showArchivedGroupsInPopup", false) in the console for the manage groups window which will disable it (you can enable it by doing window.localStorage.setItem("showArchivedGroupsInPopup", true))

Hmm.. trying that command in console window on Group Manage tab gives me an error and also doesn't seem to have effect (even tried a restart of browser);

Error in console (ctrl-shift-J when Manage Group window active) :

window.localStorage.setItem("showArchivedGroupsInPopup", false) Uncaught NS_ERROR_NOT_AVAILABLE: debugger eval code:1 getEvalResult resource://devtools/server/actors/webconsole/eval-with-debugger.js:300 evalWithDebugger resource://devtools/server/actors/webconsole/eval-with-debugger.js:212 evaluateJS resource://devtools/server/actors/webconsole.js:949 evaluateJSAsync resource://devtools/server/actors/webconsole.js:846 makeInfallible resource://devtools/shared/ThreadSafeDevToolsUtils.js:103 debugger eval code:1:1

This with FF 122.0.1 64-bit and STG Version 5.2 Last Updated 3 September 2023

Ignore above (that is also me) but you need to use the console ctrl+shift+i console instead

NullTxt avatar Feb 23 '24 15:02 NullTxt

Ah.. different console. Good to know, that works fine!

fpostma72 avatar Feb 23 '24 16:02 fpostma72

Awesome worked

Otamated avatar Apr 18 '24 07:04 Otamated