From 57f798044d32ba7f9dc10a34ac31ad5dbdbf56ae Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 8 Oct 2017 15:15:12 +0900 Subject: [PATCH] rename background end-point script name --- manifest.json | 2 +- webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 7c60cdd..216023b 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "content_scripts": [ { "matches": [ "http://*/*", "https://*/*" ], - "js": [ "build/index.js" ] + "js": [ "build/content.js" ] } ], "background": { diff --git a/webpack.config.js b/webpack.config.js index bc3bb1c..fff49d1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,7 +6,7 @@ const dist = path.resolve(__dirname, 'build'); module.exports = { entry: { - index: path.join(src, 'content'), + content: path.join(src, 'content'), settings: path.join(src, 'settings'), background: path.join(src, 'background'), console: path.join(src, 'console')