Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mdgfox/cheatsheetchromeextension
- Owner: mdgfox
- License: mit
- Created: 2021-05-15T10:44:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-19T21:01:45.000Z (4 months ago)
- Last Synced: 2024-12-09T23:18:39.137Z (about 2 months ago)
- Topics: chrome-extension, github-actions, react, typescript, webpack, yarn
- Language: TypeScript
- Homepage: https://chromewebstore.google.com/detail/cheat-sheet-extension/enlhdgahjnhlfjfpkclignnnolokpplp
- Size: 7.97 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)})
~~~