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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/JohnyTheCarrot/discord-embed-previewer/issues |
عنوان صفحة سياسة الخصوصية | 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 } |