-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.js
44 lines (40 loc) · 1.23 KB
/
popup.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const btn = document.querySelector('.changeColorBtn');
const colorGrid = document.querySelector('.colorGrid');
const colorValue = document.querySelector('.colorValue');
btn.addEventListener('click', async() => {
console.log("clicked");
const color = chrome.storage.sync.get('color',({color})=>{
console.log('color: ',color);
});
let [tab] = await chrome.tabs.query({active:true,currentWindow:true});
chrome.scripting.executeScript({
target: {tabId:tab.id},
function: pickColor,
}, async(injectionResult)=>{
const [data] = injectionResult;
if(data.result){
const color = data.result.sRGBHex;
colorGrid.style.background = color;
colorValue.innerHTML = color;
try{
await navigator.clipboard.writeText(color);
}
catch(err){
console.log(err);
}
}
console.log(injectionResult);
});
});
async function pickColor(){
console.log("script working");
try{
//Picker
const eyeDropper = new EyeDropper();
const selectedColor = await eyeDropper.open();
return selectedColor;
}
catch(err){
console.log(err);
}
}