Chrome扩展程序:关于是否进行单词选择的不同contextMenus

时间:2018-04-21 14:50:49

标签: google-chrome-extension

我正在尝试根据是否已进行文本选择在我的chrome扩展中显示不同的contextMenus。关于如何做到这一点的任何想法?

我没有选择文字时想要这段代码

chrome.contextMenus.create({
    title: "Not selected",
    contexts:["all"],  // ContextType
    onclick: search // A callback function
});

我在选择文字时想要这段代码

chrome.contextMenus.create({
    title: "Selected",
    contexts:["all"],  // ContextType
    onclick: search // A callback function
});

0 个答案:

没有答案