How to save CSS changes of Styles panel of Google Chrome Developer Tools?

At tool's website it's mentioned that we can see all change in resource panel

enter image description here

But I'm working locally on a CSS file but changes are not showing in Resource panel for me

enter image description here

enter image description here

By the way Do you know any add-ons , tools to save css changes of Chrome Developer tools? I know for Firebug there are many http://stackoverflow.com/search?q=firebug+CSS+changes+save

link|improve this question

64% accept rate
feedback

5 Answers

up vote 3 down vote accepted

Today I got the plugin for this http://addyosmani.com/blog/autosave-changes-chrome-dev-tools/

link|improve this answer
feedback

You're looking in the wrong section of "Resources".

It's not under "Local Storage", it's under "Frames":

The above screenshot shows a diff of the original styles against the new modifications made in the devtools. You can right-click the item in the left pane and save it back to disk.

link|improve this answer
Nothing inside Frames too, for me. I added one more screenshot in question – Jitendra Vyas Jul 27 '11 at 11:33
I'm not sure how your "Frames" can be empty. That sounds broken. Try this out in the Canary build (you can install it alongside your current version): tools.google.com/dlpage/chromesxs – thirtydot Jul 27 '11 at 11:42
Canary is unable to open. I also found this solution justin.my/2011/04/why-my-google-chrome-canary-cannot-run but it's still not working. I got this message when installation got finished k.min.us/iefbE2.jpg – Jitendra Vyas Jul 27 '11 at 13:24
As of this weekend (5/21/2012), this solution no longer works I believe. I used to do the same thing you show to write large chunks of new css (not old, or edits). But now, for me at least, clicking on that HTML file only shows the raw HTML without showing the new CSS rules. Is it still working for you, and if not do you have a new solution to accomplish this? – Nucleon May 21 at 19:26
feedback

Now that Chrome 18 was released last week with the required APIs, I published my chrome extension in the Chrome web store. The extension automatically saves changes in CSS or JS in Developer tools into the local disk. Go check it out.

http://tomicloud.com/2012/04/save-css-chrome-ext

link|improve this answer
feedback

You can save your CSS changes from Chrome Dev Tools itself. Check out this video Re-introduction to Chrome Dev Tools to see how it's done (you just right click on the revision you'd like to save and then click "Save As"). Still, the video is worth watching! Might even want to start from the beginning.

link|improve this answer
feedback

There's now an experimental API for DevTools extensions to receive notifications on the resources being changed -- so you can create an extension that will integrate with your IDE of choice or just post the resource content to a WebDAV server:

http://www.corp.google.com/~caseq/devtoolsext/docs/experimental.devtools.inspectedWindow.html#event-onResourceContentCommitted

link|improve this answer
link not working – Jitendra Vyas Nov 9 '11 at 14:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.