Skip to content

Instantly share code, notes, and snippets.

@fjenett
Last active April 19, 2016 07:33
Show Gist options
  • Save fjenett/0e1da35e61aeee523c653adc4b39cdb6 to your computer and use it in GitHub Desktop.
Save fjenett/0e1da35e61aeee523c653adc4b39cdb6 to your computer and use it in GitHub Desktop.
DevTools Snippets to/from LocalStorage
// when inspecting the inspector ...
// http://stackoverflow.com/questions/12291138/how-do-you-inspect-the-web-inspector-in-chrome#12291163
// in the console
// run this to move snippets into localStorage
InspectorFrontendHost.getPreferences(_ => window.localStorage.setItem('snippetsBackup',_.scriptSnippets));
// run this to restore them again
InspectorFrontendHost.setPreference("scriptSnippets", window.localStorage.getItem('snippetsBackup'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment