Add icon to child context menu

前端 未结 3 1352
我在风中等你
我在风中等你 2020-12-14 20:45

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 me

3条回答
  •  忘掉有多难
    2020-12-14 20:51

    serg answer is no longer true. Add this snippet into your manifest:

    "icons": {
       "16": "icon16.png", --> this icons will be used for you menu item
       "32": "icon32.png"
    }
    

提交回复
热议问题