Add a frame to the bottom of a web page using a Greasemonkey script (and set its size)?
问题 Is there any way to add a frame to the bottom of a web page using a Greasemonkey script? I want to write a script that adds http://www.google.com at the bottom of every web page, inside a frame. I also want the width and height of the frame to be the same as the height of the page that is inside it. 回答1: This is 3 questions in one. Adding an <iframe> is easy, by itself: $(document.body).append ( '<iframe src="http://{SOME_PAGE_BESIDES_GOOGLE!}.com/">' ); But, Google will not let you load it