File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- import { addExtListeners } from '@/helpers/extensions' ;
1
+ import { addExtensionsListeners } from '@/helpers/extensions' ;
2
2
import { initBrowserAction } from '@/helpers/browserAction' ;
3
3
import { initProxyRequests } from '@/helpers/socksProxy' ;
4
4
@@ -9,7 +9,7 @@ if (import.meta.hot) {
9
9
}
10
10
11
11
// Add listeners on extension actions
12
- addExtListeners ( ) ;
12
+ addExtensionsListeners ( ) ;
13
13
14
14
// Update browserAction for tabs and add listeners
15
15
initBrowserAction ( ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const { updateRecommendation } = useRecommendations();
7
7
8
8
type ExtensionInfo = browser . management . ExtensionInfo ;
9
9
10
- export const addExtListeners = ( ) => {
10
+ export const addExtensionsListeners = ( ) => {
11
11
management . onInstalled . addListener ( onInstall ) ;
12
12
management . onUninstalled . addListener ( onUninstall ) ;
13
13
management . onEnabled . addListener ( onEnable ) ;
You can’t perform that action at this time.
0 commit comments