Messenger Markdown
Formatting abilities for Facebook Messenger
What is Messenger Markdown?
Messenger Markdown is a Chrome extension developed by Tana Tanoi, and its main feature is "Formatting abilities for Facebook Messenger".
Extension Screenshots
Download Messenger Markdown Extension CRX File
Download Messenger Markdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | fgccodajfkcfmdjmeddafcnehmalicop |
Official URL | https://chrome.google.com/webstore/detail/fgccodajfkcfmdjmeddafcnehmalicop |
Description | Formatting abilities for Facebook Messenger |
File Size | 43.28 KB |
Installation Count | 61 |
Current Version | 0.54 |
Last Updated | 2017-04-20 |
Publish Date | 2017-04-20 |
Rating | 4.50/5 Total 6 Ratings |
Developer | Tana Tanoi |
Payment Type | free |
Extension Website | https://github.com/TanaTanoi |
Supported Languages | 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" } } |