Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
changed Chrome context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfulgeanu committed Sep 8, 2014
1 parent 36a0060 commit 32a61c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions javascripts/background_scripts/posting_process.js
Expand Up @@ -211,24 +211,24 @@ chrome.contextMenus.create({
"enabled": false
});

// Creates the ZeroBin context menu
// Creates the PlainPost context menu
chrome.contextMenus.create({
"title": "Post with ZeroBin",
"title": "New unencrypted message - PlainPost",
"contexts": ["editable"],
"onclick" : function(info, tab) {
postingProcess.postingHandler(info, tab, "ZeroBin");
postingProcess.postingHandler(info, tab, "PlainPost");
}
});
// Creates the PlainPost context menu

// Creates the ZeroBin context menu
chrome.contextMenus.create({
"title": "Post with PlainPost",
"title": "New encrypted message - ZeroBin",
"contexts": ["editable"],
"onclick" : function(info, tab) {
postingProcess.postingHandler(info, tab, "PlainPost");
postingProcess.postingHandler(info, tab, "ZeroBin");
}
});

// Creates the History context menu
chrome.contextMenus.create({
"title": "View History",
Expand Down

0 comments on commit 32a61c4

Please sign in to comment.