gpt4 book ai didi

javascript - 将图标添加到子上下文菜单

转载 作者:可可西里 更新时间:2023-11-01 02:08:43 25 4
gpt4 key购买 nike

我想在我的子上下文菜单中添加一个图标。但是现在,chrome 扩展 options for context menu在创建子菜单时不提供任何添加图标的选项。
我可以将图标添加到父菜单 using the icon parameter in manifest file .但是子菜单没有选项。
知道我如何实现这一点吗?

最佳答案

可能的解决方法是使用 Unicode Symbols :


example of context menu with icons

改编自 this Google sample 的代码:

// Create a parent item and two children.
chrome.contextMenus.create({"title": "⛔ Parent", "id": "parent"});
chrome.contextMenus.create(
{"title": "♣ Child 1", "parentId": "parent", "id": "child1"});
chrome.contextMenus.create(
{"title": "⚑ Child 2", "parentId": "parent", "id": "child2"});

子菜单“Radio 1”就像一个单选按钮,它是用 chrome.contextMenus.create({"title": "Radio 1", "type": "radio", "id": "radio1"});

这只是众多符号页面中的一页:


screenshot from unicode-table.com

关于javascript - 将图标添加到子上下文菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6772074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com