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.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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
}