-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.js
More file actions
39 lines (35 loc) · 927 Bytes
/
background.js
File metadata and controls
39 lines (35 loc) · 927 Bytes
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
const caToken = 'Bearer KiBIJCgvSJ_P-LB_7q1UjnNNoH2f2LlajXVrL3LBFwvWNoAZirXri4ght5sunV36';
const APIurl = 'https://api.genius.com/search?q=';
const searchUrl = 'https://genius.com/search?q=';
browser.browserAction.onClicked.addListener(handleClick);
function handleClick() {
browser.tabs.executeScript({
file: "./content.js",
})
};
browser.runtime.onMessage.addListener(onExecuted)
function onExecuted(result) {
let search = encodeURI(result.query);
fetch(APIurl + search, {
method: 'GET',
headers: {
'Authorization': caToken
},
})
.then(data => {
return data.json()
})
.then(result => {
return result.response.hits[0].result.url
})
.then(url => {
browser.tabs.create({
url: url
})
})
.catch(err => {
browser.tabs.create({
url: searchUrl + search
})
});
}