We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa9102 commit 19c50d9Copy full SHA for 19c50d9
extension/backgroundContextMenus.js renamed to extension/background/contextMenus.js
@@ -4,7 +4,7 @@
4
chrome.runtime.onInstalled.addListener(function() {
5
chrome.contextMenus.create({
6
id: "stack_overflow_search_context_id",
7
- title: "Search in StackOverflow",
+ title: "Search in Stack Overflow",
8
type: 'normal',
9
contexts: ['selection'],
10
});
extension/backgroundOmnibox.js renamed to extension/background/omnibox.js
extension/manifest.json
@@ -20,8 +20,8 @@
20
21
"background": {
22
"scripts": [
23
- "backgroundOmnibox.js",
24
- "backgroundContextMenus.js"
+ "background/omnibox.js",
+ "background/contextMenus.js"
25
],
26
"persistent": false
27
},
0 commit comments