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.".
Снимки экрана расширения
Скачать файл 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 |
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 } |