-
Notifications
You must be signed in to change notification settings - Fork 346
/
background.js
94 lines (79 loc) · 2.75 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
var firstrunCallback = function (detail) {
console.log(detail);
if (detail.reason != 'install' && detail.reason != 'update') return;
//打开新页面
chrome.tabs.create({
url: "https://dynamic.12306.cn/otsweb/"
});
};
function getVersion(callback) {
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', 'manifest.json');
xmlhttp.onload = function (e) {
var manifest = JSON.parse(xmlhttp.responseText);
callback(manifest.version);
}
xmlhttp.send(null);
}
if (chrome.runtime && chrome.runtime.onInstalled) {
chrome.runtime.onInstalled.addListener(firstrunCallback);
} else {
getVersion(function (ver) {
if (localStorage["cv"] != ver) {
localStorage["cv"] = ver;
chrome.tabs.create({
url: "https://dynamic.12306.cn/otsweb/"
});
}
});
}
(function () {
function callback(details) {
var url = details.url;
var trefer = null;
var treferIndex = -1;
var referIndex = -1;
for (var i = 0; i < details.requestHeaders.length; ++i) {
var h = details.requestHeaders[i];
if (h.name === 'User-Agent') {
if (details.url.indexOf("method=queryLeftTicket&") != -1) {
h.value = "Mozilla/5.0 (MSIE 9.0; Windows NT 6.1; Trident/5.0; " + Math.random() + ")";
} else {
h.value = "Mozilla/5.0 (MSIE 9.0; Windows NT 6.1; Trident/5.0;)";
}
} else if (h.name == "TRefer") {
trefer = h.value;
treferIndex = i;
} else if (h.name == "Referer") {
referIndex = i;
}
}
if (trefer && treferIndex != -1 && referIndex != -1) {
details.requestHeaders[referIndex].value = trefer;
details.requestHeaders.splice(treferIndex, 1);
}
return { requestHeaders: details.requestHeaders };
}
var filter = {
urls: ["*://*.12306.cn/*"],
types: ["main_frame", "sub_frame", "stylesheet", "script", "image", "object", "xmlhttprequest", "other"]
};
var extraInfo = ["blocking", "requestHeaders"];
chrome.webRequest.onBeforeSendHeaders.addListener(callback, filter, extraInfo);
chrome.extension.onRequest.addListener(function (request, sender, sendResponse) {
if (request.function == "isLieBaoBrowserValid") {
if (!chrome.browserAction.NotifyBadge) sendResponse({ valid: false });
else
chrome.browserAction.NotifyBadge({ text: '{"type":"function", "name":"browser_name"}' }, function (n) {
if (n == "LBBROWSER") sendResponse({ valid: true });
else sendResponse({ valid: false });
})
} else if (request.function == "notify") {
var notification = webkitNotifications.createNotification("http://www.12306.cn/mormhweb/images/favicon.ico", request.title || '订票助手', request.message);
setTimeout(function () {
notification.cancel();
}, request.timeout || 5000);
notification.show();
}
});
})();