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

Update google-meet extension #7459

Merged
merged 1 commit into from
Jul 14, 2023
Merged
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
10 changes: 10 additions & 0 deletions extensions/google-meet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts

# misc
.DS_Store
3 changes: 2 additions & 1 deletion extensions/google-meet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"icon": "google-meet-icon.png",
"author": "vitoorgomes",
"contributors": [
"hughlaw"
"hughlaw",
"iwex"
],
"license": "MIT",
"commands": [
Expand Down
2 changes: 1 addition & 1 deletion extensions/google-meet/src/utils/scripts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const getOpenedUrlsScript = (browserName: string): string => `

// Easy way to access the focused window when the meet link opens
export const getOpenedBrowserScript = `
set cmd to "lsappinfo metainfo | grep -E -o 'Google Chrome|Safari|Mozilla Firefox|Microsoft Edge|Opera|QQ|Sogou Explorer|Yandex|Brave|Firefox Developer Edition' | head -1"
set cmd to "lsappinfo metainfo | grep -E -o 'Google Chrome|Safari|Mozilla Firefox|Microsoft Edge|Opera|QQ|Sogou Explorer|Yandex|Brave|Firefox Developer Edition|Vivaldi' | head -1"

set frontmostBrowser to do shell script cmd

Expand Down