What's A Good Real Time Html Editing Extension?

1

1

i always like to real-time edit a web page source in the browser and updated as i type, but firebug really sucks, i can't insert scripts in the current page, some times the changes i type aren't updated at all, Is there any robust firefox/chrome extension for that?

i try to temporarely edit/add code to an existing web page in the internet, not a local one

Thanks

user23392

Posted 2010-06-16T02:07:50.417

Reputation: 459

1Consider changing the title of your question to something less argumentative- otherwise it's likely to be closed. – Nathan Taylor – 2010-06-16T02:12:13.777

Answers

2

Hi, i always like to real-time edit a web page source in the browser and updated as i type, but firebug really sucks, i can't insert scripts in the current page, some times the changes i type aren't updated at all, Is there any robust firefox/chrome extension for that?

It never behaves the way you mention, probably there is some other issue. Firebug seems to be the best bet out there so far.

P.S. i try to temporarely edit an existing web page in the internet, not a local one

Yes, you can do that too.

Finally, here is the community link and possible solutions to various questions.

Sarfraz

Posted 2010-06-16T02:07:50.417

Reputation: 428

When i try to add < script src="xxx"></script > it doesn't works! – user23392 – 2010-06-16T02:17:57.710

1@David: Not sure but i think this is not allowed because of security concerns. – Sarfraz – 2010-06-16T02:27:19.357

1

Chrome has a built-in DOM Inspector, script editor/debugger; it comes with Webkit (what Chrome and Safari are built on).

Right click anywhere on the page and click on "Inspect Element". That will bring up your HTML that is currently on the page. You can double click any element and it will let you edit it.

This also has some pretty powerful features that you can use. These tutorials about javascript debugging and the general overview of the developer tools are really helpful.

helloandre

Posted 2010-06-16T02:07:50.417

Reputation: 163