Infocatcher
Infocatcher
You can disable or modify shortcuts, see https://github.com/Infocatcher/Private_Tab#keyboard-shortcuts
Yes, this way is better, but it's too difficult to write entire configuration interface. :( And unfortunately there is no API about keyboard shortcuts (moreover: now used manual code to...
See #237. Toggling private state of already opened tab isn't possible at all in Firefox 52+ (https://bugzilla.mozilla.org/show_bug.cgi?id=1318388#c28) and may cause crash in Firefox 51+, so in Firefox 51+ now used...
**Before Private Tab 0.2.1 and Firefox 51** "Private Tab" checkbox in tab context menu have used `privateTab.toggleTabPrivate()` (his internal equivalent) with additional logic to reload tab after switching (better in...
This was forbidden for privacy purposes and result of `URI_DANGEROUS_TO_LOAD` flag: https://github.com/Infocatcher/Private_Tab/blob/0.1.7.1/protocol.js#L45-L50 Without this any script from web-page can get private data like cookies. Probably not critical for site itself...
> I can't seem to get `GM_openInTab()` to work. Any working example available? You probably missed `@grant GM_openInTab` option. Should be something like ``` js // ==UserScript== // @name GM_openInTab...
See #82. Now Firefox itself don't save private tabs. So, now all filtrations are hardcoded inside built-in sessions mechanism. Also there is AMO policies that prohibit such things: https://blog.mozilla.org/addons/2010/02/23/private-browsing-support-required-for-add-ons/
Yes, I understand. And that's why there was `savePrivateTabsInSessions` preference (for debug purposes, but not only). But for now it's very difficult to alter built-in things (hard to do it...
https://developer.mozilla.org/en-US/docs/Web/API/Event/Comparison_of_Event_Targets#Event_targets `event.explicitOriginalTarget` looks very similar to our case. So, will dispatch "PrivateTab:PrivateChanged" for new (duplicated) tab and set event.explicitOriginalTarget to original/source tab.
With latest v.0.5b12? Also please enable debug mode in the options and check out Error/Browser Console (Ctrl+Shift+J to open): should appears `[Right Links WE] …` messages and (probably) some errors/warnings...