Discord Embeds
Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord.
Discord Embeds क्या है?
Discord Embeds JohnyTheCarrot द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preview sites' Discord embeds for debugging purposes. Not affiliated in any way with Discord."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Discord Embeds एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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 } |