diff --git a/shells/chrome/manifest.json b/shells/chrome/manifest.json index 354f1a130d..84ac11bc63 100644 --- a/shells/chrome/manifest.json +++ b/shells/chrome/manifest.json @@ -35,7 +35,7 @@ "content_scripts": [ { "matches": [""], - "js": ["build/inject.js"], + "js": ["build/GlobalHook.js"], "run_at": "document_start" } ] diff --git a/shells/chrome/webpack.config.js b/shells/chrome/webpack.config.js index 26ca28703f..bd56178f9e 100644 --- a/shells/chrome/webpack.config.js +++ b/shells/chrome/webpack.config.js @@ -17,7 +17,7 @@ module.exports = { entry: { main: './src/main.js', background: './src/background.js', - inject: './src/GlobalHook.js', + GlobalHook: './src/GlobalHook.js', contentScript: './src/contentScript.js', panel: './src/panel.js', },