marklieberman

Results 61 comments of marklieberman

clipboard.readText and clipboard.writeText appear to have landed in FF63 so it may be worth revisiting this issue soon.

I don't have a lot of experience with desktop Linux. Can you recommend an easy to setup distro I can use for testing in a VM?

I'm on Windows, but I can't reproduce this. I am opening tabs in the background using the gesture as you described, and then closing them in random orders. It always...

It's a shame the downloads API is so lacking in features at the moment. I'd prefer not to implement any weird workaround like blob downloads at the moment. It should...

Working with the clipboard has been problematic so far. I haven't been able to reliably implement most clipboard based commands using `document.execCommand()`. I am waiting for the web extension [clipboard...

According to the documentation, you cannot pass `about:newtab` to [browser.tabs.update({url:. ...})](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/tabs/update) but you can pass `about:home`. However, that not longer seems to be the case: ![image](https://user-images.githubusercontent.com/6473247/42102875-49c2cce0-7b95-11e8-959a-15b77093575a.png) So it seems like...

Related BugZilla bugs: https://bugzilla.mozilla.org/show_bug.cgi?id=1269456 https://bugzilla.mozilla.org/show_bug.cgi?id=1400555

This would require cooperation from the OneTab author. They would have to add a listener to [runtime.onMessageExternal](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/runtime/onMessageExternal) to provide an API to invoke OneTab commands. Then you could use a...

@one-tab Temporary containers extension has implemented an onMessageExternal API in a similar use case to this issue. See #223 if you want to see how they did it.

There is no workaround. Content scripts are not able to be injected into PDF.js anymore. According to the linked Bugzilla bugs, only addons with mozillaAddon permission can work on PDF.js....