Discord Embeds

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

Wat is Discord Embeds?

Discord Embeds is een Chrome-extensie ontwikkeld door JohnyTheCarrot, en de belangrijkste functie is "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Discord Embeds

Download Discord Embeds-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Officiële URL https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Beschrijving Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Bestandsgrootte 135 KB
Aantal Installaties 297
Huidige Versie 1.1.0
Laatst Bijgewerkt 2024-02-23
Publicatiedatum 2022-04-26
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar JohnyTheCarrot
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/JohnyTheCarrot/discord-embed-previewer
Help Pagina-URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL van de Privacybeleid Pagina https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Ondersteunde Talen 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
}