Discord Embeds

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

Hvad er Discord Embeds?

Discord Embeds er en Chrome-udvidelse udviklet af JohnyTheCarrot, og dens hovedfunktion er "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Discord Embeds-udvidelses-CRX-fil

Download Discord Embeds-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Officiel URL https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Beskrivelse Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Filstørrelse 135 KB
Antal Installationer 297
Nuværende Version 1.1.0
Senest Opdateret 2024-02-23
Udgivelsesdato 2022-04-26
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler JohnyTheCarrot
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/JohnyTheCarrot/discord-embed-previewer
Hjælpeside-URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL til Fortrolighedspolitik Side https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Understøttede Sprog 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
}