Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement firefox container tab support #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Apr 13, 2022

  1. Implement firefox container tab support

    Firefox can have container tabs enabled, and an extension exists
    that will allow routing urls with a specific format into these
    containers [Open External links in a container](https://addons.mozilla.org/en-GB/firefox/addon/open-url-in-container/).
    
    If configured in a `handler`, rewrite the outgoing URL into this format
    and open that.
    
    This has an improvement over using a rewrite rule, in that the config
    can be kept DRY, and container selection logic is left to the handler.
    
    Example configuration:
    
    ```js
    handlers: [
      {
        // Some work site
        match: "https://some-site.com/*",
        browser: {
          name: "Firefox",
          container: "Work",
        },
      },
    ],
    ```
    whi-tw committed Apr 13, 2022
    Configuration menu
    Copy the full SHA
    1a66460 View commit details
    Browse the repository at this point in the history