This repository was archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontentscript.js
118 lines (104 loc) · 2.99 KB
/
contentscript.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
function asyncParallel(tasks, cb) {
var results, pending, keys
var isSync = true
if (Array.isArray(tasks)) {
results = []
pending = tasks.length
} else {
keys = Object.keys(tasks)
results = {}
pending = keys.length
}
function done(err) {
function end() {
if (cb) cb(err, results)
cb = null
}
if (isSync) process.nextTick(end)
else end()
}
function each(i, err, result) {
results[i] = result
if (--pending === 0 || err) {
done(err)
}
}
if (!pending) {
// empty
done(null)
} else if (keys) {
// object
keys.forEach(function(key) {
tasks[key](function(err, result) { each(key, err, result) })
})
} else {
// array
tasks.forEach(function(task, i) {
task(function(err, result) { each(i, err, result) })
})
}
isSync = false
}
// get access token from saved extension settings
function getAccessToken(callback) {
chrome.storage.sync.get('apikey', (res) => {
if (!res.apikey) {
return callback('API key not set. Please set the App Token in extension\'s settings');
};
callback(null, res.apikey);
});
}
function getBlacklistedGroups(callback) {
chrome.storage.sync.get('groups', (res) => {
callback(null, res.groups || []);
});
}
function getInterestKeywords(callback) {
chrome.storage.sync.get('keywords', (res) => callback(null, res.keywords || []));
}
function getHighlightMatches(callback) {
chrome.storage.sync.get('highlightMatches', (res) => callback(null, typeof res.highlightMatches === 'undefined' ? true : res.highlightMatches));
}
// inject scripts to page: https://stackoverflow.com/a/9517879
function injectScriptFile(fname, callback) {
const s = document.createElement('script');
s.src = chrome.extension.getURL(fname);
s.onload = function() {
this.remove();
callback();
};
(document.head||document.documentElement).appendChild(s);
}
function injectScriptText(str) {
var script = document.createElement('script');
script.textContent = str;
(document.head||document.documentElement).appendChild(script);
script.remove();
}
asyncParallel({
getAccessToken,
getBlacklistedGroups,
getInterestKeywords,
getHighlightMatches,
}, (err, results) => {
if (err) return alert(err.message || err);
const keywords = [...results.getInterestKeywords].map(k => k.name);
injectScriptText(`var fbDevInterest = {
_apiKey: '${results.getAccessToken}',
_blacklist: [${results.getBlacklistedGroups}],
_keywords: new Set([${keywords.map(v => `'${v}'`)}]),
_highlightMatches: ${results.getHighlightMatches},
}`);
asyncParallel({
utils: cb => injectScriptFile('utils.js', cb),
groups: cb => injectScriptFile('groups.js', cb),
inject: cb => injectScriptFile('inject.js', cb),
analytics: cb => injectScriptFile('options/analytics.js', cb),
}, (err, res) => {
injectScriptText(`
console.log('<<< fbDevInterest >>>');
fbDevInterest.parent.innerHTML = '';
fbDevInterest.init();
`);
});
});