Reputation: 4804
I'd like to write a userstyle to modify the right-click menu in Firefox, but need its XUL class and ID. What is it?
(I'd usually use DOM Inspector to find it out, but one can't inspect a right-click menu because focus is lost when switching to the DOM Inspector window.)
Upvotes: 2
Views: 498
Reputation: 21657
The right click context menu that appears when you right click on a webpage has the id = contentAreaContextMenu
. You can see here some information on modifying it.
Upvotes: 4