Send to Discord

Quickly send links to Pages, Images, Text-Selections, etc. to a Discord channel via a WebHook

Hvad er Send to Discord?

Send to Discord er en Chrome-udvidelse udviklet af Hannes Burger, og dens hovedfunktion er "Quickly send links to Pages, Images, Text-Selections, etc. to a Discord channel via a WebHook".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Send to Discord-udvidelses-CRX-fil

Download Send to Discord-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        SendToDiscord is a small extension that allows you to quickly send links/images/etc. to a discord channel via right-click.

GitHub: https://github.com/burgha/sendtodiscord

Special Thanks to Cornelius Denninger                    

Grundlæggende oplysninger om udvidelsen

Navn Send to Discord Send to Discord
ID fdhmmlghpocfmbcjhjjhnjhbbnigaiin
Officiel URL https://chromewebstore.google.com/detail/send-to-discord/fdhmmlghpocfmbcjhjjhnjhbbnigaiin
Beskrivelse Quickly send links to Pages, Images, Text-Selections, etc. to a Discord channel via a WebHook
Filstørrelse 20.96 KB
Antal Installationer 743
Nuværende Version 1.2.2
Senest Opdateret 2019-07-09
Udgivelsesdato 2019-07-09
Bedømmelse 4.00/5 Samlet 5 Bedømmelser
Udvikler Hannes Burger
Betalingsmetode free
Udvidelseswebsted https://github.com/burgha/sendtodiscord
Hjælpeside-URL https://github.com/burgha/sendtodiscord
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send to Discord",
    "version": "1.2.2",
    "description": "Quickly send links to Pages, Images, Text-Selections, etc. to a Discord channel via a WebHook",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/burgha\/sendtodiscord",
    "permissions": [
        "contextMenus",
        "storage",
        "identity",
        "https:\/\/discordapp.com\/api\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    }
}