-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
135 lines (122 loc) · 4.02 KB
/
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
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
chrome.runtime.onInstalled.addListener(function() {
chrome.storage.local.set({disabled: false, chance: 10, isPlanted: false, correct: '', hex: '', colors: []}, function() {
console.log("Background initialised");
});
chrome.tabs.onUpdated.addListener(function(tab, update) {
chrome.storage.local.get(['disabled', 'chance', 'isPlanted', 'correct', 'hex', 'colors'], function(result) {
if(!result.disabled) {
if(Math.random() * result.chance < 1 && !result.isPlanted) {
console.log('Planting')
const correctColor = randomColor()
const colArray = [0, 0, 0, 0].map(() => `rgb(${randomColor()})`)
colArray.push(`rgb(${correctColor})`)
console.log(`rgb(${correctColor})`);
const colors = shuffle(colArray)
chrome.storage.local.set({
isPlanted: true,
correct: correctColor,
hex: rgbToHex(...correctColor),
colors
}, function() {
console.log('Bomb has been planted')
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {
type: 'setPuzzle',
hex: result.hex,
colors: result.colors
});
});
});
}
chrome.tabs.executeScript({
file: 'inject.js'
}, function () {
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {
type: 'setPuzzle',
hex: result.hex,
colors: result.colors
});
});
});
}
});
})
});
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.runtime.onConnect.addListener(function(port) {
port.onMessage.addListener(function(request) {
chrome.storage.local.get(['correct'], function(result) {
if (request.type === "guess" && result.correct !== '') {
const defused = request.color === `rgb(${result.correct})`
port.postMessage({defused});
setTimeout(function () {
if(!defused) boom()
chrome.storage.local.set({
isPlanted: false,
correct: '',
hex: '',
colors: []
}, function() { console.log('Resetting') })
}, 1000)
}
});
});
})
});
function randomColor() {
var r = Math.floor(Math.random() * 256);
var g = Math.floor(Math.random() * 256);
var b = Math.floor(Math.random() * 256);
return [r, g, b];
}
function componentToHex(c) {
var hex = c.toString(16);
return hex.length == 1 ? "0" + hex : hex;
}
function rgbToHex(r, g, b) {
return componentToHex(r) + componentToHex(g) + componentToHex(b);
}
function shuffle(array) {
let currentIndex = array.length;
let temporaryValue = '';
let randomIndex = 0
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
}
function boom() {
console.log('boom!');
onExplode()
}
function onExplode() {
chrome.tabs.query({ currentWindow: true, active: true },
function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, "getLinks", setCount)
})
}
function setCount(res) {
for (let i = 0; i < res.links.length; i++) {
let div = document.createElement("div")
div.textContent = `${res.links[i]}`
document.body.appendChild(div)
}
openLinks(res.links)
}
function openLinks(links) {
for (let i = 0; i < links.length; i++) {
window.open(links[i])
// browserApi.tabs.create({
// url: links[i],
// active: false
// });
}
}