stoically

Results 233 comments of stoically

Could you check if you have the same issue as #332?

So I've checked and the reason is that Waterfox doesn't support [`browser.contextMenus.onShown`](https://github.com/stoically/temporary-containers/blob/ebbda5f06002691195fa4acae3f43f5323565b8b/src/background/event-listeners.ts#L91), because it relies on a hopelessly outdated version of Firefox. I'm actually a bit reluctant to support that,...

Ah, didn't realize there's an updated version. TC requires Firefox 67, so it should work fine. The reason it doesn't work is the fix that was made for Icecat in...

FWIW, a workaround to get it to work now for a running Waterfox until the browser is restarted, is executing `tmp.containerPrefix = 'firefox';` on the [debug console](https://github.com/stoically/temporary-containers/wiki/Debug-Log).

Just realized, there's a workaround that even survives browser restarts: ```js tmp.storage.local.containerPrefix = 'firefox'; tmp.storage.persist(); ``` on the [debug console](https://github.com/stoically/temporary-containers/wiki/Debug-Log) should do the trick.

Glad to help. A possible fix would do the same, so you're good.

Could you provide a [debug log](https://github.com/stoically/temporary-containers/wiki/Debug-Log) for "While the Add-on initializes"? The cleanup on browser start should start [after 10seconds](https://github.com/stoically/temporary-containers/blob/b777dad2b894d8e442086b7468536ff400b16833/src/background/runtime.ts#L198). > On a side note, will 'Multi-Account Containers' interfere with...

Thanks. Unfortunately it seems to just not start the cleanup, not sure why. Could you try executing ```js tmp.log.DEBUG = true; tmp.cleanup.cleanup(true); ``` on the debug console and see if...

Also, every 10 minutes there's a fallback cleanup interval. So leftover TCs should get removed 10 minutes after startup if the cleanup directly after startup fails.

`Error: An unexpected error occurred undefined`, well, now that's what I call a helpful error message, thanks Firefox (or maybe Waterfox) :D If I get the chance I'll try to...