Messenger Markdown

Formatting abilities for Facebook Messenger

Cos'è Messenger Markdown?

Messenger Markdown è un'estensione di Chrome sviluppata da Tana Tanoi, e la sua funzione principale è "Formatting abilities for Facebook Messenger".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Messenger Markdown

Scarica i file di estensione Messenger Markdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Whatsapp and Slack-like text formatting in Facebook Messenger!

If you like having nicer looking text, or just enjoy sending code snippets via facebook, then add this extension to chrome, and tell your recipient to do the same!

Currently supports backticks for `code`, underscore for _italics_, asterixes for *bold*, and tilde for ~strike-through~.

If you come across any issues, raise them here: https://github.com/TanaTanoi/messenger_formatter/issues                    

Informazioni di Base sull'Estensione

Nome Messenger Markdown Messenger Markdown
ID fgccodajfkcfmdjmeddafcnehmalicop
URL Ufficiale https://chrome.google.com/webstore/detail/fgccodajfkcfmdjmeddafcnehmalicop
Descrizione Formatting abilities for Facebook Messenger
Dimensione del File 43.28 KB
Conteggio Installazioni 61
Versione Corrente 0.54
Ultimo Aggiornamento 2017-04-20
Data di Pubblicazione 2017-04-20
Valutazione 4.50/5 Totale 6 Valutazioni
Sviluppatore Tana Tanoi
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/TanaTanoi
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Messenger Markdown",
    "description": "Formatting abilities for Facebook Messenger",
    "version": "0.54",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "credits.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/www.messenger.com\/*"
            ],
            "js": [
                "jQuery.min.js",
                "replacer.js"
            ],
            "css": [
                "replacement_styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}