Discord Embeds

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

Co je Discord Embeds?

Discord Embeds je rozšíření Chrome vyvinuté JohnyTheCarrot, a jeho hlavní funkcí je „Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Discord Embeds

Stáhněte si soubory rozšíření Discord Embeds ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Oficiální URL https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Popis Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Velikost souboru 135 KB
Počet instalací 297
Aktuální Verze 1.1.0
Poslední Aktualizace 2024-02-23
Datum Vydání 2022-04-26
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář JohnyTheCarrot
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/JohnyTheCarrot/discord-embed-previewer
URL Stránky Nápovědy https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Podporované Jazyky 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
}