Discord Embeds

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

Was ist Discord Embeds?

Discord Embeds ist eine Chrome-Erweiterung, die von JohnyTheCarrot entwickelt wurde, und ihr Hauptmerkmal ist "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Erweiterungsscreenshots

screenshot
screenshot

Discord Embeds-Erweiterungs-CRX-Datei herunterladen

Laden Sie Discord Embeds-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Offizielle URL https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Beschreibung Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Dateigröße 135 KB
Installationsanzahl 297
Aktuelle Version 1.1.0
Letztes Update 2024-02-23
Veröffentlichungsdatum 2022-04-26
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler JohnyTheCarrot
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/JohnyTheCarrot/discord-embed-previewer
Hilfeseite URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL der Datenschutzrichtlinien-Seite https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Unterstützte Sprachen 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
}