rename background end-point script name
This commit is contained in:
parent
2faf44af74
commit
57f798044d
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
"matches": [ "http://*/*", "https://*/*" ],
|
"matches": [ "http://*/*", "https://*/*" ],
|
||||||
"js": [ "build/index.js" ]
|
"js": [ "build/content.js" ]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"background": {
|
"background": {
|
||||||
|
|
|
@ -6,7 +6,7 @@ const dist = path.resolve(__dirname, 'build');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
index: path.join(src, 'content'),
|
content: path.join(src, 'content'),
|
||||||
settings: path.join(src, 'settings'),
|
settings: path.join(src, 'settings'),
|
||||||
background: path.join(src, 'background'),
|
background: path.join(src, 'background'),
|
||||||
console: path.join(src, 'console')
|
console: path.join(src, 'console')
|
||||||
|
|
Reference in a new issue