├── LICENSE ├── README.md ├── components ├── Preview.jsx ├── Settings.jsx └── TypingIndicator.jsx ├── i18n ├── en-GB.json ├── en-US.json └── index.js ├── index.js ├── manifest.json ├── stores └── dmTypingStore.js └── style.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/README.md -------------------------------------------------------------------------------- /components/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/components/Preview.jsx -------------------------------------------------------------------------------- /components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/components/Settings.jsx -------------------------------------------------------------------------------- /components/TypingIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/components/TypingIndicator.jsx -------------------------------------------------------------------------------- /i18n/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/i18n/en-GB.json -------------------------------------------------------------------------------- /i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/i18n/en-US.json -------------------------------------------------------------------------------- /i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/i18n/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/manifest.json -------------------------------------------------------------------------------- /stores/dmTypingStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/stores/dmTypingStore.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zt64/dm-typing-indicator/HEAD/style.css --------------------------------------------------------------------------------