Patrick Miller
Patrick Miller
@john-cai are you still working on this? I might be interested in contributing to `merge` features and prefer not to duplicate efforts.
@maximbaz @erayd What plans / actions are being taken to move forward on this?
Okay, if finding time is this issue I am willing to help out with continuing work or starting on it if need be.
> Thanks, I suppose a really big part of this would be to figure out what functionality will be broken, and whether there are alternative means of achieving it -...
> That's an amazing progress, thank you for the update! 🚀 @maximbaz it looks like Firefox doesn't have plans to deprecate MV2 yet, I'm not sure yet on how if...
> That was it. I created a pull request. [patgmiller#1](https://github.com/patgmiller/browserpass-extension/pull/1) @CarloWood it's still very much a WIP, but I will have a look, thanks!
> Whatever you judge is the most pragmatic choice - it would be nice to not have totally separate codebase for Chrome and FF, and we obviously don't want to...
@maximbaz @erayd copy to clipboard for FF on MV3 works just using the old approach `document.execCommand("copy")` so it was simple enough to just check `if (chrome) { ...` use the...
Another option 3. this stackoverflow suggestion, create activity to keep the server worker alive until the clipboard is cleared https://stackoverflow.com/questions/66618136/persistent-service-worker-in-chrome-extension/
i liked 3 best when i found it. and it was pretty simple to implement since we're already using `native messaging`. added a function ```js async function keepAlive() { chrome.alarms.create("keepAlive",...