Discord Embeds

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

Cos'è Discord Embeds?

Discord Embeds è un'estensione di Chrome sviluppata da JohnyTheCarrot, e la sua funzione principale è "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Discord Embeds

Scarica i file di estensione Discord Embeds in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
URL Ufficiale https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Descrizione Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Dimensione del File 135 KB
Conteggio Installazioni 297
Versione Corrente 1.1.0
Ultimo Aggiornamento 2024-02-23
Data di Pubblicazione 2022-04-26
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore JohnyTheCarrot
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JohnyTheCarrot/discord-embed-previewer
URL della Pagina di Aiuto https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL della Pagina della Politica sulla Privacy https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Lingue Supportate 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
}