Discord Embeds

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

Discord Embedsคืออะไร?

Discord Embeds เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JohnyTheCarrot และคุณลักษณะหลักของมันคือ "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Embeds

ดาวน์โหลดไฟล์ส่วนขยาย 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
}