Infocatcher

Results 85 comments of Infocatcher

Oh, downloads button have `open` property (from chrome://global/content/bindings/button.xml#button-base), but that property only sets attribute (and don't open/close downloads panel).

Also check for `node.boxObject` presence should be removed for Firefox 69+…

You can use Custom Buttons extension with following code: ``` js if(gURLBar.value) { privateTab.readyToOpenTabs(true); setTimeout(function() { privateTab.stopToOpenTabs(); // Turn off even if tab wasn't opened }, 10); var goBtn =...

> So tabs are not fully private, they just provide a separate from non-private browsing session. This is feature of built-in private browsing mechanism (that used for private tabs): built-in...

> Check this out: https://github.com/stoically/firefox-add-on-temporary-containers Hmm... as I see, still used something custom to remove history entries. Store each visited URL: https://github.com/stoically/firefox-add-on-temporary-containers/blob/ea04a06af2d40d04e4f0c6960e1e6761cedc6f05/src/background/request.js#L33-L44 And then remove them: https://github.com/stoically/firefox-add-on-temporary-containers/blob/ea04a06af2d40d04e4f0c6960e1e6761cedc6f05/src/background/container.js#L227-L237 Better, than nothing,...

May be the same as https://github.com/Infocatcher/Private_Tab/issues/174#issuecomment-102009918 Anyway, I can't reproduce. Also may be something related: https://github.com/Infocatcher/Private_Tab/issues/146#issuecomment-100789488

Related discussion: https://github.com/Infocatcher/Private_Tab/issues/146#issuecomment-133193708

It looks difficult to implement... And since Private Tab doesn't handle page loading, it's better to do this in another extension. Also see https://addons.mozilla.org/firefox/addon/foxyproxy-standard/reviews/442310/ (this is from here: https://forum.mozilla-russia.org/viewtopic.php?pid=606196#p606196)Hi, well,...

In short: this is limitations of WebExtensions. :( Now not possible to generate trusted custom events to open context menu programmatically, so now used "blink" effect to notify user: right...