Remove background scripts

This commit is contained in:
MusicalBean 2023-08-27 07:18:11 -07:00
parent 9d717ae9ff
commit 82fcbe804d
3 changed files with 0 additions and 10 deletions

View File

@ -1 +0,0 @@
export {};

View File

@ -35,13 +35,6 @@
"__chrome__minimum_chrome_version": "49",
"__opera__minimum_opera_version": "36",
"background": {
"scripts": [
"js/background.bundle.js"
],
"__chrome|opera__persistent": false
},
"content_scripts": [{
"matches": [
"*://*.encora.it/*"

View File

@ -25,7 +25,6 @@ const extensionReloaderPlugin =
entries: {
// TODO: reload manifest on update
contentScript: "contentScript",
background: "background",
extensionPage: ["popup", "options"],
},
})
@ -59,7 +58,6 @@ module.exports = {
entry: {
manifest: path.join(sourcePath, "manifest.json"),
background: path.join(sourcePath, "Background", "index.ts"),
contentScript: path.join(sourcePath, "ContentScript", "index.ts"),
},