Discord Embeds
Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Qu'est-ce que Discord Embeds ?
Discord Embeds est une extension Chrome développée par JohnyTheCarrot, et sa fonction principale est "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Discord Embeds
Téléchargez les fichiers d'extension Discord Embeds au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Discord Embeds |
ID | faeojpkidgnhcochgodeklokfimbencc |
URL Officiel | https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc |
Description | Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord. |
Taille du Fichier | 135 KB |
Nombre d'Installations | 297 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2024-02-23 |
Date de Publication | 2022-04-26 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | JohnyTheCarrot |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JohnyTheCarrot/discord-embed-previewer |
URL de la Page d'Aide | https://github.com/JohnyTheCarrot/discord-embed-previewer/issues |
URL de la Page de Politique de Confidentialité | https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md |
Langues Prises en Charge | 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 } |