View Image Context Menu Item에 대한 리뷰
View Image Context Menu Item 제작자: Anton G
리뷰 56개
개발자 답글
2년 전에 게시됨Playing around with it, reddit seems to utilize the Accept header, which with the add-on did not tamper. By default it was accepting "text/html" before any other mime types. Altering the Accept header to instead specify media types first seems to work with reddit at this point. I've updated the add-on (version 3.3) with an option, enabled by default, to override the Accept header for this compatiblity.- 5점 만점에 5점^5 david slayer 님, 2년 전
- 5점 만점에 5점Firefox 사용자 15094302 님, 2년 전Very helpful. I have no clue why the original menu item was removed, but this add-on restores it without causing any issues. Thank you!
- The CSS provided in the description uses now-deprecated selectors so your users' view image button is going to be moved back to the middle of the items instead of the top. If people are reporting vague "errors"; this is why.
Below is a corrected userChrome setup for the affected portions:
menuitem[id*="view-image-context-menu-item"] {order: -1 !important;}
menuitem[id*="view-video-context-menu-item"] {order: -1 !important;}
menuitem[id*="view-audio-context-menu-item"] {order: -1 !important;}
#contentAreaContextMenu {display: flex; flex-direction: column-reverse;개발자 답글
2년 전에 게시됨Thanks for the heads up; looks like I was behind the times on my Firefox updates. I've updated to 113 and saw it broke my menu as well.
I've updated the the userChrome in description to start using order instead of the deprecated moz box ordering. Though in my testing i did not see any effects of flex-direction: column-reverse so i have left it out. - 5점 만점에 5점Aadolf Kärki 님, 2년 전
- 5점 만점에 5점Firefox 사용자 16596123 님, 3년 전worked great until a recent MANDATORY update from firefox. I fucking hate firefox but this extension is good
- 5점 만점에 5점BluePenguin 님, 3년 전
- 5점 만점에 5점Firefox 사용자 13630698 님, 4년 전Thanks for doing this, I can't believe they changed something that was working perfectly fine... the only thing I've trouble with is that I can't figure out how to change it's position from the top to lower ones since I tend to right-click the thumbnail and open vids in another tab.
EDIT: That thread was what I was looking for, thanks again :)개발자 답글
4년 전에 게시됨If you mean the context menu ordering, by default addon menu items are listed at the bottom. By messing with UserChrome.css you can make them appear in a custom order.
In the addon description i have some basic CSS to always list it first in the context menu, but if you want to have better control over the ordering, check this thread: https://github.com/agoupinets/view-image-context-menu-item/issues/14
And also of note that in the add-on preferences there are options to change the left/middle/shift-click behavior of the context menu item if desired. - 5점 만점에 5점Firefox 사용자 13689361 님, 4년 전
- 5점 만점에 5점asg aesgasgea sg 님, 4년 전kinda sad that one needs an addon for some basic function. shame on you firefox :P
- 5점 만점에 5점Kathanaddaeus 님, 4년 전Replaces the old functionality well enough. I did change the userChrome entries to hide the icon though to "visibility: hidden" instead of "display: none" as that moved the text all the way to the left edge of the context menu. In case anyone has a similar problem.
개발자 답글
4년 전에 게시됨thats a good point - i've been writing the CSS against the Proton interface, but looks like its not compatible with the old UI; in the old UI it needs to be "visibility: hidden" or offsets the text too far left, and in the new UI it needs to be "display: none" otherwise the text remains offset too far right.
i should make a note of that on the description - 5점 만점에 5점Talon-senpai 님, 4년 전