Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to save changes in Firebug locally?

What I'm trying to do is to save the changes I make to CSS and HTML on different sites with Firebug.

Just to be clear, I don't expect Firebug to upload the changes to the server via FTP or anything. I just want to save the changes locally, so only I will be able to see them.

For example I've seen a few Firefox/Chrome extensions that add a download button under every video on Youtube, so I know it's possible to do that somehow.

If you have a different way to achieve what I'm trying to do, I'll be glad to hear about it.

(It doesn't have to be with Firebug.)

Thanks in advance!

like image 997
Radicate Avatar asked Dec 20 '10 09:12

Radicate


2 Answers

If you don't mind using Web Developer Toolbar it's easy to save changes made to the DOM (and CSS).

When you install the toolbar, you'll get a "View Source" menu, click on that and choose "View generated source". Then just copy and paste that into a .html file.

You did not say if you alter your HTML or CSS, if CSS, FireFile is a very good addon for this.

Edit, with some Googling, i found FireDiff, which states that it can export changes made in Firebug, i have not tested it bit it's worth checking out.

like image 95
alexn Avatar answered Nov 06 '22 23:11

alexn


You could try using Greasemonkey.

It has support for adding custom scripts that are run whenever you load a page (linked to which pages it should load on) and that can make changes to the page dynamically.

https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/

like image 39
David Mårtensson Avatar answered Nov 06 '22 23:11

David Mårtensson