-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
272 lines (234 loc) · 7.33 KB
/
Copy pathbackground.js
File metadata and controls
272 lines (234 loc) · 7.33 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
// ILoveWaves Background Service Worker
class ILoveWavesBackground {
constructor() {
this.init();
}
init() {
// Handle extension installation
chrome.runtime.onInstalled.addListener((details) => {
if (details.reason === "install") {
this.handleInstall();
} else if (details.reason === "update") {
this.handleUpdate(details.previousVersion);
}
});
// Handle tab updates to manage wave state
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (changeInfo.status === "complete" && tab.url) {
this.handleTabUpdate(tabId, tab);
}
});
// Handle tab activation for performance optimization
chrome.tabs.onActivated.addListener((activeInfo) => {
this.handleTabActivation(activeInfo.tabId);
});
// Handle storage changes
chrome.storage.onChanged.addListener((changes, namespace) => {
if (namespace === "local") {
this.handleStorageChange(changes);
}
});
// Handle messages from content scripts and popup
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
this.handleMessage(message, sender, sendResponse);
return true; // Keep message channel open for async response
});
}
handleInstall() {
console.log("ILoveWaves: Extension installed");
// Set default settings
this.setDefaultSettings();
// Show welcome notification
chrome.notifications?.create("welcome", {
type: "basic",
iconUrl: "icons/icon48.png",
title: "ILoveWaves Installed! 🌊",
message:
"Click the extension icon to start transforming website backgrounds with beautiful waves!",
});
}
handleUpdate(previousVersion) {
console.log(
`ILoveWaves: Updated from ${previousVersion} to ${
chrome.runtime.getManifest().version
}`
);
// Handle migration if needed
this.migrateSettings(previousVersion);
}
async handleTabUpdate(tabId, tab) {
try {
const url = new URL(tab.url);
const domain = url.hostname;
// Check if waves are enabled for this domain
const result = await chrome.storage.local.get([domain]);
const settings = result[domain];
if (settings?.enabled) {
// Inject content script if not already injected
await this.ensureContentScriptInjected(tabId);
}
} catch (error) {
console.error("ILoveWaves: Error handling tab update:", error);
}
}
async handleTabActivation(tabId) {
try {
const tab = await chrome.tabs.get(tabId);
if (tab.url) {
// Optimize performance for active tab
await chrome.tabs
.sendMessage(tabId, {
action: "optimizeForActiveTab",
isActive: true,
})
.catch(() => {
// Content script might not be injected yet
});
}
} catch (error) {
// Tab might be closed or invalid
}
}
handleStorageChange(changes) {
// Notify all tabs about settings changes
Object.keys(changes).forEach(async (domain) => {
if (domain.includes(".")) {
// It's a domain
const tabs = await chrome.tabs.query({ url: `*://${domain}/*` });
tabs.forEach((tab) => {
chrome.tabs
.sendMessage(tab.id, {
action: "settingsChanged",
domain: domain,
settings: changes[domain].newValue,
})
.catch(() => {
// Content script might not be ready
});
});
}
});
}
async handleMessage(message, sender, sendResponse) {
try {
switch (message.action) {
case "getTabInfo":
const tabInfo = await this.getTabInfo(sender.tab?.id);
sendResponse({ success: true, data: tabInfo });
break;
case "optimizePerformance":
await this.optimizePerformance(message.tabId, message.enable);
sendResponse({ success: true });
break;
case "exportSettings":
const settings = await this.exportSettings();
sendResponse({ success: true, data: settings });
break;
case "importSettings":
await this.importSettings(message.settings);
sendResponse({ success: true });
break;
default:
sendResponse({ success: false, error: "Unknown action" });
}
} catch (error) {
console.error("ILoveWaves: Error handling message:", error);
sendResponse({ success: false, error: error.message });
}
}
async ensureContentScriptInjected(tabId) {
try {
// Try to send a ping message to check if content script is loaded
await chrome.tabs.sendMessage(tabId, { action: "ping" });
} catch (error) {
// Content script not loaded, inject it
try {
await chrome.scripting.executeScript({
target: { tabId: tabId },
files: ["content.js"],
});
await chrome.scripting.insertCSS({
target: { tabId: tabId },
files: ["disco.css"],
});
} catch (injectionError) {
console.error(
"ILoveWaves: Failed to inject content script:",
injectionError
);
}
}
}
async getTabInfo(tabId) {
if (!tabId) return null;
try {
const tab = await chrome.tabs.get(tabId);
const url = new URL(tab.url);
return {
domain: url.hostname,
url: tab.url,
title: tab.title,
};
} catch (error) {
return null;
}
}
async optimizePerformance(tabId, enable) {
try {
await chrome.tabs.sendMessage(tabId, {
action: "optimizePerformance",
enable: enable,
});
} catch (error) {
console.error("ILoveWaves: Error optimizing performance:", error);
}
}
async setDefaultSettings() {
const defaultGlobalSettings = {
version: chrome.runtime.getManifest().version,
installDate: Date.now(),
totalSitesWithWaves: 0,
isPremium: false,
};
await chrome.storage.local.set({
"ilove-waves-global": defaultGlobalSettings,
});
}
async migrateSettings(previousVersion) {
// Handle settings migration between versions
console.log("ILoveWaves: Migrating settings from", previousVersion);
// Add migration logic here if needed in future versions
}
async exportSettings() {
const allSettings = await chrome.storage.local.get(null);
// Filter out only ILoveWaves related settings
const exportData = {};
Object.keys(allSettings).forEach((key) => {
if (key.includes(".") || key.startsWith("ilove-waves-")) {
exportData[key] = allSettings[key];
}
});
return {
version: chrome.runtime.getManifest().version,
exportDate: Date.now(),
settings: exportData,
};
}
async importSettings(importData) {
if (!importData.settings) {
throw new Error("Invalid import data");
}
// Validate and import settings
await chrome.storage.local.set(importData.settings);
console.log("ILoveWaves: Settings imported successfully");
}
}
// Initialize background script
const iLoveWavesBackground = new ILoveWavesBackground();
// Handle service worker lifecycle
self.addEventListener("activate", () => {
console.log("ILoveWaves: Service worker activated");
});
self.addEventListener("install", () => {
console.log("ILoveWaves: Service worker installed");
});