Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mdgfox/cheatsheetchromeextension

Small Google Chrome extension for passing tests
https://github.com/mdgfox/cheatsheetchromeextension

chrome-extension github-actions react typescript webpack yarn

Last synced: about 3 hours ago
JSON representation

Small Google Chrome extension for passing tests

Awesome Lists containing this project

README

        


logo

# CheatSheetChromeExtension
Small Google Chrome extension for passing tests. [Link to Chrome Web Store](https://chrome.google.com/webstore/detail/cheat-sheet-extension/enlhdgahjnhlfjfpkclignnnolokpplp?utm_source=ext_app_menu).

## Database structure
Uploaded file should have next structure:
~~~tcl
{
"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
~~~tcl
chrome.storage.local.get(function(result){console.log(result)})
~~~