chromeworker/chromeproxy/background/capture.js

34 lines
761 B
JavaScript
Raw Normal View History

2020-11-24 07:16:37 +00:00
var href = window.location.href;
var content = document.documentElement.innerHTML;
try {
if (condition == undefined) {
condition = function () {
return true;
};
}
} catch (error) {
2020-11-24 07:16:37 +00:00
condition = function () {
return true;
};
}
2020-11-24 07:16:37 +00:00
if (condition()) {
Tell(BackgroundMsgType.CONTENT, content);
} else {
Tell(BackgroundMsgType.NOTWANT, content);
2020-11-24 07:16:37 +00:00
}
function Tell(backgroundType, content) {
try {
if (content == undefined) {
chrome.runtime.sendMessage({ type: backgroundType });
} else {
chrome.runtime.sendMessage({ type: backgroundType, content: content });
}
} catch (error) {
console.log(error);
window.location.href = Host;
}
}