Questions tagged [iframe]

34 questions
30
votes
4 answers

How to get the URL of the frame in chrome browser

I want to check my URL is correct redirected (parameter etc.) in Chrome. In the address bar only the main URL is listed. In IE all you need is right-click -> Properties. How to obtain the same in Chrome? The URL in the source of the e.g. iframe tag…
9
votes
2 answers

How to add additional key frames to video using ffmpeg?

I want to add key frames on the base of a specific interval (20 frames) to my video. Therefore I used the following command in ffmpeg: ffmpeg -i -vcodec libx264 -x264-params keyint=20:scenecut=0 -acodec copy out.mp4 Output is, that I get…
Julian F.
  • 533
8
votes
1 answer

Does Chrome have a keyboard shortcut to reload an iframe?

Is there a keyboard shortcut for Google Chrome that lets you reload a frame (iframe) that has focus? The only way I've found to do it is via right click. Pressing F-5 while the frame has focus (e.g. while actively in a form element) reloads the…
Tim Post
  • 891
8
votes
9 answers

Is it dangerous if I store a copy of an infected website on my local disk?

First, I'm not into HTML and PHP programming. A friend's Joomla site was hacked by some sort of html injection, and now every php and html file has an iframe which is linked to some sort of malware page. And now I want to copy the infected files…
alex
7
votes
5 answers

Get the list of I-Frames in a video in FFMPEG / Python

I'm trying to select say 10 frames from a given video, possibly with highest variety and scenes. I would like to experiment with various selection scenarios, but the good thing is that the notion of I-frame inherently means scene changes! So I would…
Tina J
  • 579
6
votes
2 answers

How to download an embedded private Vimeo video

Given an embedded private video with the player URL, e.g. https://player.vimeo.com/video/874566064 How can I download the video for offline viewing?
5
votes
2 answers

How to disable iframes in browsers

I'm currently using Chrome 27. After looking through the settings options (Settings → Privacy → Content settings) I see that I can disable just about anything... except iframes. Is there any easy way to do this? Is it also possible in IE and…
Danield
  • 393
4
votes
1 answer

Firefox without same origin policy

I have an increasingly frustrating problem with the firefox implementation of the same origin policy. I am developing an integrated system with touch screen support, and we have the user option of loading web pages in iframes in several locations on…
Knuwgljung
  • 106
  • 1
  • 5
4
votes
0 answers

How do I embed a plotly chart in a Notion document?

I have a chart that I've made with plotly in RStudio. I can host it in an arbitrary location, with github or a place like shiny apps. I'd like to make the plotly chart available from a Notion doc. I'm thinking I might embed it within an iFrame in…
Cauder
  • 974
3
votes
3 answers

How to download Embedded PDF from this website with Pdfviewer.js

with free signing-in in this website, you can view a pdf really useful for med school. https://www.accademiamedici.it/manuale-del-neoabilitato I cannot download it because it's embedded and uses a javascript (pdfviewer.js) and i tried to search…
Paolo Luini
  • 31
  • 1
  • 1
  • 2
2
votes
1 answer

Is there a way to whitelist domains in google chrome for iframes?

Based on the Chrome settings here - https://www.chromium.org/updates/same-site/test-debug that where basically turned on in Chrome (and pretty much every other major browser) users that work with me can no longer get content iframed from a different…
blankip
  • 206
  • 1
  • 6
  • 15
2
votes
1 answer

NGINX X-Frame-Options allow only from single page

I am trying to setup my vHost to allow iframes from only one subdomain of our network. Before we had: add_header X-Frame-Options "SAMEORIGIN"; on all our pages. To accomplish what I want to do I tried: add_header X-Frame-Options…
Bent
  • 123
1
vote
2 answers

How do I disable XSS/"Same Origin" checking on Chrome?

I am trying to access the contents of HTML tags within an iframe on a page I am developing. The parent and iframed pages have the same root domain, but different subdomains. I cannot alter the iframed page, but I can alter the parent page. To this…
David Faux
  • 4,899
1
vote
1 answer

Security warning in IE for non-secure content

I'm faced with strange behaviour in IE8. There is an HTTPS web page which contains an IFrame pointing to non-secure page. When I receive a security warning from IE, if I choose "Yes", I see "Navigation Cancelled" page in the IFrame part but if I…
Nami
1
vote
1 answer

How to forward HTTPS to HTTP for any IP address?

I have an iFrame in an HTTPS site. This iframe must point to an IP (not specific, there are hundreds of different ones) in HTTP. Currently, it doesn't work: "This request has been blocked; the content must be served over HTTPS" I imagine that one…
Cu_Irl
  • 11
  • 2
1
2 3