Discord Embeds

Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.

What is Discord Embeds?

Discord Embeds is a Chrome extension developed by JohnyTheCarrot, and its main feature is "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Extension Screenshots

screenshot
screenshot

Download Discord Embeds Extension CRX File

Download Discord Embeds extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        An open-source tool to help web developers test their sites' embeds as they would look in Discord. The aim of this tool is to eliminate the tedious process of evading Discord's embed cache, and eliminate the need to deploy the site somewhere to test it (which might expose unannounced projects prematurely). This tool provides a simple preview window of the Discord embed.                    

Extension Basic Information

Name Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Official URL https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Description Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
File Size 135 KB
Installation Count 297
Current Version 1.1.0
Last Updated 2024-02-23
Publish Date 2022-04-26
Rating 5.00/5 Total 2 Ratings
Developer JohnyTheCarrot
Email [email protected]
Payment Type free
Extension Website https://github.com/JohnyTheCarrot/discord-embed-previewer
Help Page URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
Privacy Policy Page URL https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord Embeds",
    "version": "1.1.0",
    "description": "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.",
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*.html"
            ],
            "js": [
                "meta-reader.js"
            ]
        }
    ],
    "manifest_version": 3
}