├── LICENSE ├── README.md ├── SmartMemosAudioRecordModal.ts ├── Utils.ts ├── assets ├── SmartMemo.gif └── SmartMemo2.gif ├── esbuild.config.mjs ├── main.css ├── main.ts ├── manifest.json ├── package.json ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/README.md -------------------------------------------------------------------------------- /SmartMemosAudioRecordModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/SmartMemosAudioRecordModal.ts -------------------------------------------------------------------------------- /Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/Utils.ts -------------------------------------------------------------------------------- /assets/SmartMemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/assets/SmartMemo.gif -------------------------------------------------------------------------------- /assets/SmartMemo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/assets/SmartMemo2.gif -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/main.css -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/package.json -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mossy1022/Smart-Memos/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------