Skip to content

Commit 19c50d9

Browse files
committed
Move background js files to separate folder
1 parent efa9102 commit 19c50d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

extension/backgroundContextMenus.js renamed to extension/background/contextMenus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
chrome.runtime.onInstalled.addListener(function() {
55
chrome.contextMenus.create({
66
id: "stack_overflow_search_context_id",
7-
title: "Search in StackOverflow",
7+
title: "Search in Stack Overflow",
88
type: 'normal',
99
contexts: ['selection'],
1010
});
File renamed without changes.

extension/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
"background": {
2222
"scripts": [
23-
"backgroundOmnibox.js",
24-
"backgroundContextMenus.js"
23+
"background/omnibox.js",
24+
"background/contextMenus.js"
2525
],
2626
"persistent": false
2727
},

0 commit comments

Comments
 (0)