在Chrome扩展程序中创建动态上下文菜单失败

时间:2012-11-02 20:53:57

标签: javascript google-chrome-extension contextmenu

我正在尝试根据所选内容在Chrome上下文菜单中创建条目。 我在Stackoverflow上发现了几个关于此的问题,对于所有这些问题,答案是:使用带有“mousedown”监听器的内容脚本来查看当前选择并创建上下文菜单。

我实现了这个,但它并不总是有效。有时所有日志消息都表示上下文菜单已按我的意愿修改,但出现的上下文菜单未更新。

基于此,我怀疑这是竞争条件:有时chrome会在代码完全运行之前开始渲染上下文菜单。

我尝试将eventListener添加到“contextmenu”和“mouseup”。当用户使用鼠标选择文本时,后者会触发,因此它会在出现之前更改上下文菜单(甚至是秒)。即使使用这种技术,我仍然会看到同样的错误发生!

这种情况在Chrome 22.0.1229.94(Mac)中经常发生,偶尔会在Chromium 20.0.1132.47(Linux)中发生,并且在2分钟内尝试在Windows上没有发生(Chrome 22.0.1229.94)。

到底发生了什么?我该如何解决这个问题?还有其他解决方法吗?


这是我的代码的简化版本(不是那么简单,因为我保留了日志消息):

的manifest.json:

{
  "name": "Test",
  "version": "0.1",
  "permissions": ["contextMenus"],
  "content_scripts": [{
    "matches": ["http://*/*", "https://*/*"],
    "js": ["content_script.js"]
  }],
  "background": {
    "scripts": ["background.js"]
  },
  "manifest_version": 2
}

content_script.js

function loadContextMenu() {
  var selection = window.getSelection().toString().trim();
  chrome.extension.sendMessage({request: 'loadContextMenu', selection: selection}, function (response) {
    console.log('sendMessage callback');
  });
}

document.addEventListener('mousedown', function(event){
  if (event.button == 2) {
    loadContextMenu();
  }
}, true);

background.js

function SelectionType(str) {
  if (str.match("^[0-9]+$"))
    return "number";
  else if (str.match("^[a-z]+$"))
    return "lowercase string";
  else
    return "other";
}

chrome.extension.onMessage.addListener(function(msg, sender, sendResponse) {
  console.log("msg.request = " + msg.request);
  if (msg.request == "loadContextMenu") {
    var type = SelectionType(msg.selection);
    console.log("selection = " + msg.selection + ", type = " + type);
    if (type == "number" || type == "lowercase string") {
      console.log("Creating context menu with title = " + type);
      chrome.contextMenus.removeAll(function() {
        console.log("contextMenus.removeAll callback");
        chrome.contextMenus.create(
            {"title": type,
             "contexts": ["selection"],
             "onclick": function(info, tab) {alert(1);}},
            function() {
                console.log("ContextMenu.create callback! Error? " + chrome.extension.lastError);});
      });
    } else {
      console.log("Removing context menu")
      chrome.contextMenus.removeAll(function() {
          console.log("contextMenus.removeAll callback");
      });
    }
    console.log("handling message 'loadContextMenu' done.");
  }
  sendResponse({});
});

1 个答案:

答案 0 :(得分:29)

contextMenus API用于定义上下文菜单条目。在打开上下文菜单之前不需要调用它。因此,不要在contextmenu事件上创建条目,而是使用 selectionchange 事件不断更新contextmenu条目。

我将展示一个简单的示例,它只显示上下文菜单条目中的所选文本,以显示条目已同步良好。

使用此内容脚本:

document.addEventListener('selectionchange', function() {
    var selection = window.getSelection().toString().trim();
    chrome.runtime.sendMessage({
        request: 'updateContextMenu',
        selection: selection
    });
});

在后台,我们只会创建一次contextmenu条目。之后,我们更新contextmenu项目(使用我们从chrome.contextMenus.create获得的ID) 当选择为空时,如果需要,我们删除上下文菜单条目。

// ID to manage the context menu entry
var cmid;
var cm_clickHandler = function(clickData, tab) {
    alert('Selected ' + clickData.selectionText + ' in ' + tab.url);
};

chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
    if (msg.request === 'updateContextMenu') {
        var type = msg.selection;
        if (type == '') {
            // Remove the context menu entry
            if (cmid != null) {
                chrome.contextMenus.remove(cmid);
                cmid = null; // Invalidate entry now to avoid race conditions
            } // else: No contextmenu ID, so nothing to remove
        } else { // Add/update context menu entry
            var options = {
                title: type,
                contexts: ['selection'],
                onclick: cm_clickHandler
            };
            if (cmid != null) {
                chrome.contextMenus.update(cmid, options);
            } else {
                // Create new menu, and remember the ID
                cmid = chrome.contextMenus.create(options);
            }
        }
    }
});

为了简化这个例子,我假设只有一个上下文菜单条目。如果要支持更多条目,请创建数组或散列以存储ID。

提示

  • 优化 - 要减少chrome.contextMenus API调用的数量,请缓存参数的相关值。然后,使用简单的===比较来检查是否需要创建/更新contextMenu项。
  • 调试 - 所有chrome.contextMenus方法都是异步的。要调试代码,请将回调函数传递给.create.remove.update方法。