-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.js
49 lines (43 loc) · 1.22 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
45
46
47
48
49
/**
* Get the current URL.
*
* @param {function(string)} callback - called when the URL of the current tab
* is found.
*/
function getCurrentTabUrl(callback) {
var queryInfo = {
active: true,
currentWindow: true
};
chrome.tabs.query(queryInfo, function(tabs) {
var tab = tabs[0];
var url = tab.url;
console.assert(typeof url == 'string', 'tab.url should be a string');
callback(url);
});
}
function takeMeTo(url) {
updateProperties = {
url: "https://" + url
}
chrome.tabs.update(updateProperties=updateProperties)
}
getCurrentTabUrl(function(url) {
chrome.storage.local.get("sites", function(sites){
sites = sites.sites
domain = url.match(/:\/\/([^\/]+)\//)[1]
console.log(domain)
if(domain in sites) {
proxies = sites[url.match(/:\/\/(.+)\//)[1]]
$("#mirror").css("display", "block")
$("#nomirror").css("display", "none")
$("#mirror button").on("click", function() {
takeMeTo(proxies[Math.floor(Math.random()*proxies.length)])
})
}
else {
$("#mirror").css("display", "none")
$("#nomirror").css("display", "block")
}
})
})