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
官方URL 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
}