Skip to content

mdgfox/CheatSheetChromeExtension

Repository files navigation

logo

CheatSheetChromeExtension

Small Google Chrome extension for passing tests. Link to Chrome Web Store.

Database structure

Uploaded file should have next structure:

{
    "someDatabaseUniqName: [
        {
            "question": "some trigger phrase",
            "answer": "string to return as result"
        }
    ]
}

Some tips:

  • You can import many files at one time
  • New files placed to the end of databases list, so they have higher priority
  • When you don't remember what is your database consists of, you can drop it by button
  • You can check local storage by next snippet
chrome.storage.local.get(function(result){console.log(result)})