Customize Your Web Feature Overview
Uploader Comments (rudolfnoe)
Top Comments
-
It's a Firefox add-on, it works on Windows, Mac, and Linux.
-
Awesome tool, Rudolf! This is Greasemonkey taken to a much higher level - makes customizations much more accessible to non-developers.
All Comments (21)
-
This tool is amazing. I wonder if there is a Google Chrome equivalent though.
-
Hi, many thanks for your addon. I'm quite exited about maybe being able to get around some of Youtubes latest "improvements". I've been trying to customize Youtubes channel layouts tonight to see more comments but it's quite tricky, there are a lot of boxes within boxes on a Youtube page, selecting the box that's under another box is tricky. I ended up butchering the channel look, I'll try again tomorrow, thanks. Have you modified your Youtube layout?
-
I can't make heads or tails of this thing. Click save. Ok then what? Nothing happens! Where is the script?
-
@JollySpace Are you running the latest stable version of Firefox?
-
No it doesn't...
-
nothing f***ing works!!!!!!!!!!!!! I click on reemove or any button and nothing happens
-
yeah, me too
-
this is great! i have been waiting for something this simple, yet very powerful for a long time!
Thank you so much for putting this Add-on together!
can you give us the HTML and the JS you used in this demo
natri23 2 years ago
Here is the code without the squared brackets!
HTML
iframe id="previewFrame" style="position:fixed; width:500px; height:600px; z-level:1000" src="about:blank"
/iframe
JavaScript:
var pf = document.getElementById('previewFrame')
pf.style.left = (window.innerWidth-500) + "px"
window.addEventListener('focus', function(event){ var target = event.target if(target.tagName=="LI"){ var firstHref = target.getElementsByTagName('a')[0].href pf.src=firstHref }
}, true)
rudolfnoe 2 years ago
Many thanks to all for these nice feedbacks :-))
Rudolf
rudolfnoe 2 years ago