Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

"open image in new tab" instead of "open link in new tab"

  • 6 відповідей
  • 1 має цю проблему
  • 1222 перегляди
  • Остання відповідь від licanmarius55

more options

So I want to open an image in new tab but that image has attached a link to it so if I click the image, it just goes to the page linked.

So I want to open an image in new tab but that image has attached a link to it so if I click the image, it just goes to the page linked.

Обране рішення

Okay, yes, there are cases where the context menu doesn't have image items on it. The most common scenario is when there is a transparent element in front of the image. Firefox doesn't pierce that element to show image items. You can work around this with an add-on (assuming you are not the type to open the Developer Tools to find the address). The "behind!" extension is great for this, and I used some of its code in my "View Image Info Reborn" extension.

Читати цю відповідь у контексті 👍 1

Усі відповіді (6)

more options

You should find "Open Image in New Tab" in the right-click context menu of that image.

more options

Also: if a page doesn't show Firefox's context menu when you right click something, try holding Shift: Shift+right-click

more options

Doesn't work, it doesn't show open image in new tab. More info: it's on 9anime.id. If I am on the home page and right-click a cover from an anime, it only show open link in new tab. Btw, it works on edge.

more options

Вибране рішення

Okay, yes, there are cases where the context menu doesn't have image items on it. The most common scenario is when there is a transparent element in front of the image. Firefox doesn't pierce that element to show image items. You can work around this with an add-on (assuming you are not the type to open the Developer Tools to find the address). The "behind!" extension is great for this, and I used some of its code in my "View Image Info Reborn" extension.

more options

In some cases you could use a JavaScript bookmarklet to look for an image further down in the DOM.

javascript:/*activeElement|image*/
(function(){
var E,O,i;
function N(A){O=[];for(i=0;A[i];i++){O.push(A[i].name+': '+A[i].value)}return(O.join('\n'))}
if(E=prompt('document.activeElement: '+document.activeElement.nodeName+'\n\n'+N(document.activeElement.attributes),document.activeElement.getAttribute('href'))){
E=document.activeElement.querySelector('img');
prompt(E.nodeName+'\n'+N(E.attributes),E.getAttribute('src'))
}})()

more options

jscher2000 - Support Volunteer said

Okay, yes, there are cases where the context menu doesn't have image items on it. The most common scenario is when there is a transparent element in front of the image. Firefox doesn't pierce that element to show image items. You can work around this with an add-on (assuming you are not the type to open the Developer Tools to find the address). The "behind!" extension is great for this, and I used some of its code in my "View Image Info Reborn" extension.

Thank you, it works.