Recensioni per View Image Context Menu Item
View Image Context Menu Item di Anton G
Recensione di RUiN3D
Valutata 5 su 5
di RUiN3D, 4 anni faI 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.
Replica dello sviluppatore
pubblicato il 4 anni faThe 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; }