forked from CSC510-Software-Engineering-Fall-2024/SimplyClip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
30 lines (28 loc) · 1018 Bytes
/
background.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
28
29
30
chrome.contextMenus.create({
title: "Save Image to SimplyClip",
contexts: ["image"],
id: "save-image-to-simplyclip"
});
chrome.contextMenus.onClicked.addListener(function (info, tab) {
if (info.menuItemId === "save-image-to-simplyclip") {
const imageUrl = info.srcUrl;
fetch(imageUrl)
.then((response) => response.blob())
.then((blob) => {
const reader = new FileReader();
reader.onload = function (e) {
const imageDataUrl = e.target.result;
chrome.storage.local.get(["imageList"], function (result) {
let imageList = result.imageList || [];
if (!imageList.includes(imageDataUrl)) {
imageList.unshift(imageDataUrl);
chrome.storage.local.set({ imageList: imageList }, () => {
console.log("Image saved to imageList");
});
}
});
};
reader.readAsDataURL(blob);
});
}
});