PEE/chrome/bg.js

30 lines
653 B
JavaScript
Raw Normal View History

//debugger;
//console.error("LOADING");
chrome.scripting.registerContentScripts(
[{
runAt: "document_start",
world: "MAIN",
js: ["4chan-x-prevent-csp-inject.js"],
id: "0",
matches: [
"https://boards.4chan.org/*",
"https://boards.4channel.org/*"
]
}]
);
chrome.scripting.updateContentScripts(
[{
runAt: "document_start",
world: "MAIN",
js: ["4chan-x-prevent-csp-inject.js"],
id: "0",
matches: [
"https://boards.4chan.org/*",
"https://boards.4channel.org/*"
]
}]
);
//console.error("LOADED");