Hello,
I’m a new user that would like to develop some small features by using the instruments and the documentation provided by this wonderful community!
My simple target is to create a new context-menu inside the Network tab->Copy context. I would like to simulate programmaticaly the Copy as cURL function.
Currently, looking online I got only how to create a context-menu only on the webpage and not in the DevTools/Network tab, for example (check/uncheck button menu):
browser.menus.create({
id: "check-uncheck",
type: "checkbox",
title: browser.i18n.getMessage("menuItemUncheckMe"),
contexts: ["all"],
checked: checkedState
}, onCreated);
I would like to know if there is a way to manage the Network tab context-menu, if there is some object inside the browser
object to be managed. An example of code would be appreciated. I’m new on this project ^^
Thank you for your support!