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

Add Microsoft Edge Beta Support! #116

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,40 @@

> Chrome/Canary/Chromium bookmarks search workflow for Alfred

- [x] Google Chrome (`chrome`, `chrome-profiles`)
- [x] Google Chrome Canary (`canary`, `canary-profiles`)
- [x] Chromium (`chromium`, `chromium-profiles`)
- [x] Microsoft Edge (`edge`, `edge-profiles`)
- [x] Microsoft Edge Canary (`edge-canary`, `edge-canary-profiles`)
- [x] Vivaldi (`vivaldi`, `vivaldi-profiles`)
- [x] Google Chrome (`chrome`, `chrome-profiles`)
- [x] Google Chrome Canary (`canary`, `canary-profiles`)
- [x] Chromium (`chromium`, `chromium-profiles`)
- [x] Microsoft Edge (`edge`, `edge-profiles`)
- [x] Microsoft Edge Beta (`edge-beta`, `edge-beta-profiles`)
- [x] Microsoft Edge Canary (`edge-canary`, `edge-canary-profiles`)
- [x] Vivaldi (`vivaldi`, `vivaldi-profiles`)

![Screenshot](./screenshot.png)

## Commands

| Command | Description |
|:--|:--|
| `<browser>` | Searches bookmarks using `query`. If you would like to show bookmark folder please press Command (or Cmd) ⌘. |
| `<browser>-profiles` | Sets active user profile. `Auto` options checks active user profile and uses it to search bookmarks. |
| Command | Description |
| :------------------- | :----------------------------------------------------------------------------------------------------------- |
| `<browser>` | Searches bookmarks using `query`. If you would like to show bookmark folder please press Command (or Cmd) ⌘. |
| `<browser>-profiles` | Sets active user profile. `Auto` options checks active user profile and uses it to search bookmarks. |

## Setup

- Run `brew install go`
- Run `make deps`
- Run `brew install go`
- Run `make deps`

## Develop

- Run `make build`
- Install `./build/chrome-bookmarks.alfredworkflow`
- Run `make build`
- Install `./build/chrome-bookmarks.alfredworkflow`

## Test

- Run `make test`
- Run `make test`

## Cover

- Run `make cover` or `make cover-html`
- Run `make cover` or `make cover-html`

## QA

Expand Down
Binary file added assets/edge-beta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion configs/browser.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,16 @@
iconUrl: "edge-canary.png"
profileName: "Default"

- name: "edge-beta"
fullName: "com.microsoft.edgemac.Beta"
description: "Microsoft Edge Beta"
path: "~/Library/Application Support/Microsoft Edge Beta"
iconUrl: "edge-beta.png"
profileName: "Default"

- name: "vivaldi"
fullName: "com.vivaldi.Vivaldi"
description: "Vivaldi"
path: "~/Library/Application Support/Vivaldi"
iconUrl: "vivaldi.png"
profileName: "Default"

Empty file modified configs/info.plist.gohtml
100644 → 100755
Empty file.
6 changes: 6 additions & 0 deletions configs/workflow.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ edge:
profileListId: "fe077da3-9be5-42f0-bc42-dff10527b4a1"
profileSetId: "d049ea91-55c4-4bb0-97b0-f6512c7c6842"

edge-beta:
bookmarkListId: "bd9a51db-907e-45c3-91d9-5c5bd8d2a81d"
bookmarkOpenId: "8d5930b1-ecfe-4e40-b923-5e2cb9151066"
profileListId: "5773d1d8-a048-43ed-b421-15b2481e1040"
profileSetId: "ecf56018-7d81-486b-9358-44f0d9bdc9fb"

edge-canary:
bookmarkListId: "d8ea0a40-6493-4e42-af3b-3630ec9eba2d"
bookmarkOpenId: "cd405773-829b-4eff-bb1f-a8eb2d613bc9"
Expand Down