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
Eメール [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
}