Discord Embeds

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

Vad är Discord Embeds?

Discord Embeds är en Chrome-tillägg utvecklad av JohnyTheCarrot, och dess huvudfunktion är "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Discord Embeds-förlängningens CRX-fil

Ladda ner Discord Embeds-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
Officiell webbadress https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Beskrivning Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Filstorlek 135 KB
Antal Installationer 297
Aktuell Version 1.1.0
Senast Uppdaterad 2024-02-23
Publiceringsdatum 2022-04-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare JohnyTheCarrot
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/JohnyTheCarrot/discord-embed-previewer
Hjälpsida URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL till Sekretesspolicy Sidan https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Stödda Språk 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
}