morat523035

Results 114 comments of morat523035

You cannot run the Grouped By Sort command with tbkeys-lite in Thunderbird 115 or higher. Thunderbird 102: `window.MsgSortThreaded();` `window.MsgSortUnthreaded();` `window.MsgGroupBySort();` Thunderbird 115: `window.gTabmail.currentAbout3Pane.sortController.sortThreaded();` `window.gTabmail.currentAbout3Pane.sortController.sortUnthreaded();` `window.gTabmail.currentAbout3Pane.sortController.groupBySort();` `window.goDoCommand('cmd_sort', {target:{value:'threaded'}});` `window.goDoCommand('cmd_sort', {target:{value:'unthreaded'}});` `window.goDoCommand('cmd_sort',...

Are you talking about the "Empty Junk" context menu item in the Unified Folders Junk folder? Thunderbird 115: ``` window.gTabmail.currentAbout3Pane.folderPane.emptyJunk(window.gTabmail.currentAbout3Pane.gFolder); ``` I don't use junk commands so I didn't test...

Use the main key bindings section for the main window. Use the compose key bindings section for the compose window. The following json works for me in the main key...

Try this: ``` { "option+command+j": "window.gTabmail.currentAbout3Pane.folderPane.emptyJunk(window.gTabmail.currentAbout3Pane.gFolder);" } ``` I don't use junk commands so I didn't test it.

How addon settings are stored http://github.com/wshanks/tbkeys/issues/164 If the tbkeys addon is disabled using the Addons Manager tab, then I can't run the following code snippet to show the extension storage...

I hacked manifest.json file in the `\extensions\[email protected]` archive as a test. ``` - "strict_min_version": "68.0", + "strict_min_version": "128.0", "strict_max_version": "*", ``` On startup, tbkeys addon was disabled. There was a...

In my opinion, the easy method to recover the key bindings would be to hack the manifest.json file in the `\extensions\[email protected]` archive. tbkeys 2.3.0 manifest.json file http://github.com/wshanks/tbkeys/blob/b7bff64ff0c1df5157fe2ffd307c1fc4f4d6cabc/addon/manifest.json For example: *...

It's a good idea not to update your addons if you are using an obsolete version. Addons Manager tab > Gear icon > [click] Reset All Addons to Update Manually...

I would use 115.0 not 115 for the strict_min_version value in the updates.json file. Valid application versions http://addons.thunderbird.net/thunderbird/pages/appversions/ tbkeys updates.json http://github.com/wshanks/tbkeys/blob/main/updates.json PostGuard updates.json http://github.com/encryption4all/postguard-tb-addon/blob/main/resources/updates.json

Here is how to simulate a click on the "Message" menuitem using tbkeys. i.e. right click a message to open menupopup#mailContext element > Export Messages As… > Copy To Clipboard...