blob: 56d2d9332d23b097f6c0e086fab7b02f0c793cdf (
plain)
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
|
/* globals badger:false */
require.scopes.incognito = (function() {
var tabs = {};
// Get all existing tabs
chrome.tabs.query({}, function(results) {
results.forEach(function(tab) {
tabs[tab.id] = tab.incognito;
});
});
// Create tab event listeners
function onUpdatedListener(tabId, changeInfo, tab) {
tabs[tab.id] = tab.incognito;
}
function onRemovedListener(tabId) {
delete tabs[tabId];
}
// Subscribe to tab events
function startListeners() {
chrome.tabs.onUpdated.addListener(onUpdatedListener);
chrome.tabs.onRemoved.addListener(onRemovedListener);
}
function learningEnabled(tab_id) {
if (badger.getSettings().getItem("learnInIncognito")) {
// treat all pages as if they're not incognito
return true;
}
// if we don't have incognito data for whatever reason,
// default to disabled
if (!tabs.hasOwnProperty(tab_id)) {
return false;
}
// else, do not learn in incognito tabs
return !tabs[tab_id];
}
/************************************** exports */
let exports = {
learningEnabled,
startListeners,
};
return exports;
/************************************** exports */
})();
|