美文网首页
chrome右键菜单API

chrome右键菜单API

作者: 子非黑白鱼 | 来源:发表于2018-07-26 14:28 被阅读0次

如果我们需要给chrome附加一些自定义的右键菜单,可以参考以下api,只能在当前页面有效:

chrome.contextMenus.create(
    {   "id":"121",
      "title": "刷新页面",
    }  
    ,function (){
      console.log('扩展的菜单');
    });
 
   chrome.contextMenus.removeAll(function (){
   console.log('移除了所有菜单');
  });

参考:https://developer.chrome.com/extensions/contextMenus

相关文章

网友评论

      本文标题:chrome右键菜单API

      本文链接:https://www.haomeiwen.com/subject/sptbmftx.html