Discord Embeds
Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Apa itu Discord Embeds?
Discord Embeds adalah ekstensi Chrome yang dikembangkan oleh JohnyTheCarrot, dan fitur utamanya adalah "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Discord Embeds
Unduh file ekstensi Discord Embeds dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Discord Embeds |
ID | faeojpkidgnhcochgodeklokfimbencc |
URL Resmi | https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc |
Deskripsi | Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord. |
Ukuran File | 135 KB |
Jumlah Instalasi | 297 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2024-02-23 |
Tanggal Publikasi | 2022-04-26 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | JohnyTheCarrot |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/JohnyTheCarrot/discord-embed-previewer |
URL Halaman Bantuan | https://github.com/JohnyTheCarrot/discord-embed-previewer/issues |
URL Halaman Kebijakan Privasi | https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md |
Bahasa yang Didukung | 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 } |