From 8cdc1581b0935e9d456badb53385f08e134756d5 Mon Sep 17 00:00:00 2001 From: Cristian Perez Date: Tue, 2 Apr 2019 12:28:55 +0100 Subject: [PATCH] Use standard context-menu notation and capitalization --- src/bg/background.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bg/background.js b/src/bg/background.js index 751c7c9..99d8354 100644 --- a/src/bg/background.js +++ b/src/bg/background.js @@ -50,14 +50,14 @@ chrome.commands.onCommand.addListener(function(command) { // TODO: Abstract the chrome API stuff into library var menuRoot = chrome.contextMenus.create({ "type": "normal", - "title": "New window with..", + "title": "New window with...", "contexts": ["page"] }); var menuWithTabsToRight = chrome.contextMenus.create({ "type": "normal", "parentId": menuRoot, - "title": "..tabs to right", + "title": "Tabs to the right", "contexts": ["page"], "onclick": newWindowWithTabsToRight }); @@ -65,7 +65,7 @@ var menuWithTabsToRight = chrome.contextMenus.create({ var menuWithThisTabAndTabsToRight = chrome.contextMenus.create({ "type": "normal", "parentId": menuRoot, - "title": "..this tab and tabs to right", + "title": "This tab and tabs to the right", "contexts": ["page"], "onclick": newWindowWithCurrentAndTabsToRight });