Skip to content

Commit

Permalink
fix missing context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
devalex88 committed Nov 24, 2020
1 parent 5dc057e commit 1f376bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function openPanel(tab) {
} else {
master[contentWindowId] = panelWindowInfo.id;
if (Object.keys(master).length === 1) {
createMenus();
createKrMenus();
}
resolve(panelWindowInfo);
clearInterval(interval);
Expand Down Expand Up @@ -103,7 +103,7 @@ browser.windows.onRemoved.addListener(function(windowId) {
});

// context menu
function createMenus() {
function createKrMenus() {
browser.contextMenus.create({
id: "verifyText",
title: "verifyText",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"description": "Selenium IDE alternative to record and export Selenium scripts. With reports & screenshots. Fast & open-source.",
"manifest_version": 2,
"name": "addon_name_placeholder",
"version": "5.3.18",
"version": "5.3.19",
"homepage_url":"https://www.katalon.com/",
"icons":
{
Expand Down

0 comments on commit 1f376bd

Please sign in to comment.