-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.js
30 lines (28 loc) · 1.07 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
//////////////////////////////////////////////
// //
// Title : PopUP JS //
// //
// Started by : Flux //
// //
// Time : 18:55 hrs //
// //
// Editor : Sublime Text //
// //
// Version : 0.1 //
// //
// Due to Quora Bullshit policy //
// //
//////////////////////////////////////////////
document.getElementById("act").addEventListener("click", function (argument) {
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, {type: "delete_cookies"}, function(response) {
if(response.message){
chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
chrome.tabs.update(tabs[0].id, {url: tabs[0].url});
console.log(response.message);
window.close();
});
}
});
});
});