Today I wanted to export my snippets from chrome.
I found Information from 2013: https://github.com/bgrins/devtools-snippets/issues/28#issuecomment-27455522
I opened the DevTools -> to sperate Window -> Inspect the Devtools Itself
Then in Console:
->localStorage.scriptSnippets
undefined
->var stringifiedSnippets = localStorage.getItem('scriptSnippets');
undefined
->stringifiedSnippets
null
I tested Chrome 48 (windows), Chromium 45(ubuntu) and a Friends Chrome on his Macbook. How can I access my Snippets.
Has the API changed? Or am I making a mistake here. Thanks.