Discord Embeds
Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Co to jest Discord Embeds?
Discord Embeds to rozszerzenie Chrome opracowane przez JohnyTheCarrot, a jego główną funkcją jest „Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discord Embeds
Pobierz pliki rozszerzeń Discord Embeds w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Discord Embeds |
ID | faeojpkidgnhcochgodeklokfimbencc |
Oficjalny URL | https://chromewebstore.google.com/detail/discord-embeds/faeojpkidgnhcochgodeklokfimbencc |
Opis | Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord. |
Rozmiar pliku | 135 KB |
Liczba instalacji | 297 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2024-02-23 |
Data Publikacji | 2022-04-26 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | JohnyTheCarrot |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/JohnyTheCarrot/discord-embed-previewer |
Adres URL Strony Pomocy | https://github.com/JohnyTheCarrot/discord-embed-previewer/issues |
Adres URL Strony Polityki Prywatności | https://github.com/JohnyTheCarrot/discord-embed-previewer/blob/main/PRIVACY_POLICY.md |
Obsługiwane Języki | 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 } |