forked from clockify/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
27 lines (27 loc) · 1.06 KB
/
sw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
try {
importScripts(
"contentScripts/URLPatternHelper.js",
"contentScripts/service-localstorage.js",
"contentScripts/defaultProject.js",
"contentScripts/service-background.js",
"contentScripts/userWorkspaceStorage.js",
"contentScripts/token-service-background.js",
"contentScripts/user-service-background.js",
"contentScripts/integration-background.js",
"contentScripts/task-service-background.js",
"contentScripts/project-service-background.js",
"contentScripts/tag-service-background.js",
"contentScripts/custom-field-service-background.js",
"contentScripts/timeEntry.js",
"contentScripts/clockifyLocales.js",
"contentScripts/background.js",
"contentScripts/webSocket-background.js",
"contentScripts/idle-detection-background.js",
"contentScripts/context-menu.background.js",
"contentScripts/notification-background.js",
"contentScripts/reminder-background.js",
"contentScripts/pomodoro-background.js"
);
} catch (error) {
console.log(error);
}