├── .github └── stale.yml ├── .gitignore ├── .prettierrc.js ├── ChangeLog.js ├── Components ├── Settings.jsx └── Tag.jsx ├── LICENSE ├── README.md ├── changelog.json ├── constants.js ├── index.js ├── manifest.json └── style.css /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | debug.log 2 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /ChangeLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/ChangeLog.js -------------------------------------------------------------------------------- /Components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/Components/Settings.jsx -------------------------------------------------------------------------------- /Components/Tag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/Components/Tag.jsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/README.md -------------------------------------------------------------------------------- /changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/changelog.json -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/constants.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/manifest.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Puyodead1/powercord-stafftags/HEAD/style.css --------------------------------------------------------------------------------