devynspencer / edge-utils

Utility extensions for Microsoft Edge. Cleanup/group/sort/export tabs,
MIT License
1 stars 0 forks source link

New Edge Browser automation - create groups/tabs/pins based on configuration file/preset/template #1

Open devynspencer opened 3 weeks ago

devynspencer commented 3 weeks ago

Popout Menu

Hotkey Management

Allow users to configure their extension hotkeys from a plain-text configuration that can be checked into source control.

Browser Session Configuration

Allow users to configure their browsing environments from a plain-text configuration that can be checked into source control.

Organization Hotkeys

Examples

{
  "tabs": [
    {
      "url": "https://github.com/devynspencer",
      "pinned": true
    },
    {
      "url": "https://www.youtube.com/feed/history",
      "pinned": true
    }
  ],
  "tab_groups": [
    {
      "name": "Projects",
      "color": "Pink",
      "tabs": [
        "https://github.com/users/devynspencer/projects/990",
        "https://github.com/users/devynspencer/projects/991",
        "https://github.com/users/devynspencer/projects/992"
      ]
    },
    {
      "name": "Documentation",
      "color": "Violet",
      "tabs": [
        "https://discord.js.org/docs/packages/discord.js/14.15.3",
        "https://discordx.js.org/docs/discordx/getting-started"
      ]
    },
    {
      "name": "Communication",
      "color": "Purple",
      "tabs": [
        "https://discord.com/channels/123456/123456",
        "https://outlook.live.com/mail/0/inbox",
        "https://outlook.live.com/calendar/0/view/month"
      ]
    },
    {
      "name": "Development Tools",
      "color": "Gray",
      "tabs": [
        "https://www.tablesgenerator.com/markdown_tables#",
        "https://coolors.co/palettes/trending"
      ]
    }
  ]
devynspencer commented 3 weeks ago

Tab group colors are apparently static, oops.