├── .gitignore ├── AlwaysOnTop ├── AlwaysOnTop.plugin.js ├── README.md └── src │ └── AlwaysOnTop.plugin.tsx ├── FixPaste ├── FixPaste.plugin.js ├── README.md └── src │ └── FixPaste.plugin.tsx ├── PinIcon ├── PinIcon.plugin.js ├── README.md └── src │ └── PinIcon.plugin.tsx ├── PinchToZoom ├── PinchToZoom.plugin.js ├── README.md └── src │ └── PinchToZoom.plugin.tsx ├── QuickView ├── QuickView.plugin.js ├── README.md └── src │ ├── QuickView.plugin.tsx │ └── style.scss ├── README.md ├── copy.js ├── new.js ├── package.json ├── templates ├── template.js └── template.ts ├── tsconfig.json ├── typings ├── build_environment_types │ ├── index.d.ts │ └── package.json ├── discord_environment_types │ ├── index.d.ts │ └── package.json └── esbuild_stuff │ ├── index.d.ts │ └── package.json └── utils ├── BdApi.ts ├── css.ts ├── functional.ts ├── modules └── filters.ts ├── react.ts └── utils.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /AlwaysOnTop/AlwaysOnTop.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/AlwaysOnTop/AlwaysOnTop.plugin.js -------------------------------------------------------------------------------- /AlwaysOnTop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/AlwaysOnTop/README.md -------------------------------------------------------------------------------- /AlwaysOnTop/src/AlwaysOnTop.plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/AlwaysOnTop/src/AlwaysOnTop.plugin.tsx -------------------------------------------------------------------------------- /FixPaste/FixPaste.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/FixPaste/FixPaste.plugin.js -------------------------------------------------------------------------------- /FixPaste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/FixPaste/README.md -------------------------------------------------------------------------------- /FixPaste/src/FixPaste.plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/FixPaste/src/FixPaste.plugin.tsx -------------------------------------------------------------------------------- /PinIcon/PinIcon.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinIcon/PinIcon.plugin.js -------------------------------------------------------------------------------- /PinIcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinIcon/README.md -------------------------------------------------------------------------------- /PinIcon/src/PinIcon.plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinIcon/src/PinIcon.plugin.tsx -------------------------------------------------------------------------------- /PinchToZoom/PinchToZoom.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinchToZoom/PinchToZoom.plugin.js -------------------------------------------------------------------------------- /PinchToZoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinchToZoom/README.md -------------------------------------------------------------------------------- /PinchToZoom/src/PinchToZoom.plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/PinchToZoom/src/PinchToZoom.plugin.tsx -------------------------------------------------------------------------------- /QuickView/QuickView.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/QuickView/QuickView.plugin.js -------------------------------------------------------------------------------- /QuickView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/QuickView/README.md -------------------------------------------------------------------------------- /QuickView/src/QuickView.plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/QuickView/src/QuickView.plugin.tsx -------------------------------------------------------------------------------- /QuickView/src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/QuickView/src/style.scss -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/README.md -------------------------------------------------------------------------------- /copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/copy.js -------------------------------------------------------------------------------- /new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/new.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/package.json -------------------------------------------------------------------------------- /templates/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/templates/template.js -------------------------------------------------------------------------------- /templates/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/templates/template.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/build_environment_types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const PLUGIN_NAME: string; -------------------------------------------------------------------------------- /typings/build_environment_types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/typings/build_environment_types/package.json -------------------------------------------------------------------------------- /typings/discord_environment_types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/typings/discord_environment_types/index.d.ts -------------------------------------------------------------------------------- /typings/discord_environment_types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/typings/discord_environment_types/package.json -------------------------------------------------------------------------------- /typings/esbuild_stuff/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/typings/esbuild_stuff/index.d.ts -------------------------------------------------------------------------------- /typings/esbuild_stuff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/typings/esbuild_stuff/package.json -------------------------------------------------------------------------------- /utils/BdApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/BdApi.ts -------------------------------------------------------------------------------- /utils/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/css.ts -------------------------------------------------------------------------------- /utils/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/functional.ts -------------------------------------------------------------------------------- /utils/modules/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/modules/filters.ts -------------------------------------------------------------------------------- /utils/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/react.ts -------------------------------------------------------------------------------- /utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwerasd205/BDPlugins/HEAD/utils/utils.ts --------------------------------------------------------------------------------