Add a way to open multiple URLs or links in the same window
With reference to https://github.com/cassidyjames/ephemeral/issues/6 This doesn't have to be a classical tab system. It would even be very nice if the tab system could be broken up by intelligent solutions. There are certainly creative solutions for that ;)
My concerns are that in the current version of Ephemeral I can only solve this with multiple open windows. But I really like it when not so many app windows are open. This also creates a certain peace of mind at work.
While I love to see a solution for this, I also see the difficulty to solve this technically in such a way that the individual tabs really run as sandboxes and no cross site scripting or similar is possible.
But I think the community is creative, don't you?
I also see the difficulty to solve this technically in such a way that the individual tabs really run as sandboxes and no cross site scripting or similar is possible.
Well: webkit_web_context_set_process_model(..., WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES) and webkit_web_context_set_sandbox_enabled(..., TRUE)
@4jNsY6fCVqZv right now windows are separate WebKit contexts, but I feel like tabs within one window would share a context. Otherwise some uses would break like opening a link from a signed-in site in a new tab.
@cassidyjames What possible solutions do you see? What about the solution @TingPing is proposing?
My comment was just a counter to yours, he is right that you use a single context.