├── .gitignore ├── .prettierignore ├── LICENSE ├── PRIVACY_POLICY.md ├── README.md ├── extension ├── icon128.png ├── icon16.png ├── icon48.png ├── manifest.json ├── meta-reader.js └── popup.html ├── package.json ├── pnpm-lock.yaml ├── readme-images ├── image1.png ├── image2.png └── image3.png ├── rollup.config.js ├── scripts └── setupTypeScript.js └── src ├── App.svelte ├── DiscordEmbed.svelte ├── DiscordMessage.svelte ├── Icons ├── BlueskyLogo.svelte ├── GithubLogo.svelte └── ReloadSVG.svelte ├── Tooltip.svelte └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/README.md -------------------------------------------------------------------------------- /extension/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/icon128.png -------------------------------------------------------------------------------- /extension/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/icon16.png -------------------------------------------------------------------------------- /extension/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/icon48.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/meta-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/meta-reader.js -------------------------------------------------------------------------------- /extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/extension/popup.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /readme-images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/readme-images/image1.png -------------------------------------------------------------------------------- /readme-images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/readme-images/image2.png -------------------------------------------------------------------------------- /readme-images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/readme-images/image3.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/DiscordEmbed.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/DiscordEmbed.svelte -------------------------------------------------------------------------------- /src/DiscordMessage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/DiscordMessage.svelte -------------------------------------------------------------------------------- /src/Icons/BlueskyLogo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/Icons/BlueskyLogo.svelte -------------------------------------------------------------------------------- /src/Icons/GithubLogo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/Icons/GithubLogo.svelte -------------------------------------------------------------------------------- /src/Icons/ReloadSVG.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/Icons/ReloadSVG.svelte -------------------------------------------------------------------------------- /src/Tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/Tooltip.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnyTheCarrot/discord-embed-previewer/HEAD/src/main.js --------------------------------------------------------------------------------