Discord Embeds

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

Discord Embeds là gì?

Discord Embeds là một tiện ích mở rộng Chrome được phát triển bởi JohnyTheCarrot, và tính năng chính của nó là "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Discord Embeds

Tải xuống các tệp mở rộng Discord Embeds dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Discord Embeds Discord Embeds
ID faeojpkidgnhcochgodeklokfimbencc
URL Chính Thức https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc
Mô tả Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Kích Thước Tệp 135 KB
Số Lần Cài Đặt 297
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2024-02-23
Ngày Phát Hành 2022-04-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển JohnyTheCarrot
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JohnyTheCarrot/discord-embed-previewer
URL Trang Trợ Giúp https://github.com/JohnyTheCarrot/discord-embed-previewer/issues
URL Trang Chính Sách Bảo Mật https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md
Ngôn Ngữ Được Hỗ Trợ 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
}