function run() {
let computedValue;
chrome.storage.sync.get('blacklist', blacklisted => {
computedValue = blacklisted['blacklist'] || [];
if(!computedValue.includes(window.location.hostname)) {
addBionicMarkup();
addBionicStyles(observe);
}
});
}
run(); <------------------------- src/content.js:40
observe();
Context
https://github.com/ratdoux/easyreading/issues
Stack Trace
src/content.js:40 (anonymous function)