-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackground.js
92 lines (62 loc) · 2.27 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
chrome.storage.local.set({budget: 0.00}, function(){
});
var pageConditions = {
conditions: [
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { urlContains: "/cart" }
//pageUrl:{ schemes: ['https','http'] }
})
],
actions: [
new chrome.declarativeContent.ShowPageAction()
//window.open("./popup/popup.html", "extension_popup", "width=300,height=400,status=no,scrollbars=yes,resizable=no")
//chrome.windows.create({url: "./popup/popup.html"})
]
}
chrome.runtime.onInstalled.addListener(function() {
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
chrome.declarativeContent.onPageChanged.addRules([pageConditions]);
});
});
/**
const condition = window.location.href.contains('/cart')
if (condition) {
window.open("./popup/popup.html", "extension_popup", "width=300,height=400,status=no,scrollbars=yes,resizable=no");
}**/
/**
chrome.webNavigation.onHistoryStateUpdated.addListener(details => {
const url = detail.url
console.log(url)
});**/
chrome.tabs.onUpdated.addListener(function
(tabId, changeInfo, tab) {
// read changeInfo data and do something with it (like read the url)
var condition = false;
if (tab.url){
condition = tab.url.includes('/cart')
}
console.log(tab);
console.log(`condition=${condition}`)
if (condition && changeInfo.status == 'complete') {
console.log('cart found in url');
chrome.tabs.executeScript({
file: 'contentScript.js'
});
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse){
console.log(request.amount)
var newTotal = request.amount;
console.log(newTotal);
let totalBudget = 0.00;
chrome.storage.local.get(['budget'], function(result){
totalBudget = result.budget;
console.log(result.budget);
if(newTotal > totalBudget){
window.open("./popup/popup.html", "extension_popup", "width=500,height=450,status=no,scrollbars=yes,resizable=yes");
}
});
}
)
}
}
);