We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca07a8a commit 87bf01fCopy full SHA for 87bf01f
background.js
@@ -1,7 +1,9 @@
1
const closeZoomWindow = (tab)=>{
2
- if (tab.url.includes('https://www.twilio.com/en-us/help/sales/thank-you-for-meeting')|| tab.url.includes('https://twilio.zoom.us/j/')) {
3
- chrome.tabs.remove(tab.id)
4
- }
+ setTimeout(()=>{
+ if (tab.url.includes('https://www.twilio.com/en-us/help/sales/thank-you-for-meeting')|| tab.url.includes('https://twilio.zoom.us/j/')) {
+ chrome.tabs.remove(tab.id)
5
+ }
6
+ },500)
7
}
8
9
const closeZoomWindowProxy = (tabId,changeInfo,tab)=>{
0 commit comments