Reviews for View Image Context Menu Item
View Image Context Menu Item by Anton G
Review by RUiN3D
Rated 5 out of 5
by RUiN3D, 4 years agoI am happy for this to exist, but I wonder if there is any way to put the "View Image" Function on top of the Right-Click Menu or if that would be impossible because Firefox? It's the only thing that bothers me about the extension.
Developer response
posted 4 years agoThe add-on cannot control the menu in any meaningful way. If you are willing to mess with userChrome.css, the following addition should do the trick - hiding the default option and moving this extension to the top:
/* Hides Open Image In New Tab */
#context-viewimage { display: none; }
/* Hides Open View In New Tab */
#context-viewvideo { display: none; }
/* Moves View Image to the very top */
menuitem[label="View Image"] { -moz-box-ordinal-group: 0 !important; }
/* Moves View Video to the very top */
menuitem[label="View Video"] { -moz-box-ordinal-group: 0 !important; }
/* Hides Open Image In New Tab */
#context-viewimage { display: none; }
/* Hides Open View In New Tab */
#context-viewvideo { display: none; }
/* Moves View Image to the very top */
menuitem[label="View Image"] { -moz-box-ordinal-group: 0 !important; }
/* Moves View Video to the very top */
menuitem[label="View Video"] { -moz-box-ordinal-group: 0 !important; }