├── .gitattributes ├── LICENSE ├── README.md ├── components ├── BioTabBarItem.jsx ├── DiscordBio.jsx └── Settings.jsx ├── i18n ├── de.json ├── en-US.json ├── fr.json ├── index.js └── pl.json ├── index.js ├── manifest.json └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/README.md -------------------------------------------------------------------------------- /components/BioTabBarItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/components/BioTabBarItem.jsx -------------------------------------------------------------------------------- /components/DiscordBio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/components/DiscordBio.jsx -------------------------------------------------------------------------------- /components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/components/Settings.jsx -------------------------------------------------------------------------------- /i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/i18n/de.json -------------------------------------------------------------------------------- /i18n/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/i18n/en-US.json -------------------------------------------------------------------------------- /i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/i18n/fr.json -------------------------------------------------------------------------------- /i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/i18n/index.js -------------------------------------------------------------------------------- /i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/i18n/pl.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/manifest.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ISimpForVi/discord-bio/HEAD/style.css --------------------------------------------------------------------------------