Discord Embeds

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

什麼是Discord Embeds?

Discord Embeds是由JohnyTheCarrot開發的Chrome擴展程式,該擴展的主要功能是“Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.”。

擴展截圖

screenshot
screenshot

下載Discord Embeds擴展crx文件

下載Discord Embeds擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
官方網址 https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
簡介 Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
檔案大小 135 KB
安裝次數 297
目前版本 1.1.0
更新時間 2024-02-23
上架時間 2022-04-26
評分 5.00/5 共 2 次評分
開發者 JohnyTheCarrot
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/JohnyTheCarrot/discord-embed-previewer
說明頁面URL https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
隱私政策頁面URL https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
支援的語言 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
}