Renamed GlobalHook content script references to injectGlobalHook to avoid confusion

This commit is contained in:
Brian Vaughn
2019-04-03 11:01:28 -07:00
parent 5b879ac095
commit 07bf8e53c1
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["build/inject.js"],
"js": ["build/injectGlobalHook.js"],
"run_at": "document_start"
}
]
+1 -1
View File
@@ -58,7 +58,7 @@
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["build/inject.js"],
"js": ["build/injectGlobalHook.js"],
"run_at": "document_start"
}
]
+1 -1
View File
@@ -15,7 +15,7 @@ module.exports = {
entry: {
background: './src/background.js',
contentScript: './src/contentScript.js',
inject: './src/GlobalHook.js',
injectGlobalHook: './src/injectGlobalHook.js',
main: './src/main.js',
panel: './src/panel.js',
renderer: './src/renderer.js',