simple-tab-groups
simple-tab-groups copied to clipboard
Remove archived groups from toolbar menu
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.
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.
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 :)
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))
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 doingwindow.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:
This with FF 122.0.1 64-bit and STG Version 5.2 Last Updated 3 September 2023
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 doingwindow.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?
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 doingwindow.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
Ah.. different console. Good to know, that works fine!
Awesome worked