Elasticsearch Sense chrome plugin disabled, need to get dsl queries written in console

Please download this zip file from my dropbox and follow the instructions to install it. Please run the file through some anti-virus to protect yourself. Thanks to this link to help me export chrome extension.

  1. List item Download and unzip attachment
  2. Go to chrome://extensions
  3. Delete the current Sense plugin installed
  4. Check developer mode and click on "Load unpacked extension..." and select the unzipped folder. enter image description here

It seems like in the case of the Sense extension, its only persistent data was kept in localStorage (relevant source).

Whether data recovery will be easy depends heavily on when you last used the extension.

  1. If you last used the extension before Chrome 61 (~ September 2017), then you are in luck: the localStorage database is stored in SQLite 3 format.

    You need to find the corresponding chrome-extension_[some_id]_0.localstorage file under Local Storage in your profile; it's an SQLite database. The ID doesn't seem to be the same as the extension ID.

    You can load it in various tools, including sqliteonline.com for an online browser.

  2. If you need data since update to Chrome 61, you're in a much tougher situation. Chrome 61 switched to LevelDB for localStorage backend, and I couldn't easily extract the data from it.

    See this question for subtleties involved. The database itself is located at Local Storage/leveldb in your profile.

    It seems like Chrome does not delete older SQLite-formatted data, so you can recover at least data from early September.

FWIW, the ID of the extension appears to have been lhjgkmllcaadmopgmanpapmpjgmfcfig