Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
208 views
in Technique[技术] by (71.8m points)

javascript - Add icon to child context menu

I want to add an icon to my child context menus. But right now, the chrome extension options for context menu doesnt provide any option to add icon while creating a child menu.
I can add icon to the parent menu using the icon parameter in manifest file. But no option for the child menu.
Any idea how I might achieve this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

A possible workaround is using Unicode Symbols:


example of context menu with icons

Adapted code from 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"});

The submenu "Radio 1" behaves as a radio button, and it's defined with chrome.contextMenus.create({"title": "Radio 1", "type": "radio", "id": "radio1"});

This is just one of many pages of symbols:


screenshot from unicode-table.com


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...