Asana Markdown and Syntax Highlighting

Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor.

Asana Markdown and Syntax Highlighting क्या है?

Asana Markdown and Syntax Highlighting jordan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Asana Markdown and Syntax Highlighting एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Asana Markdown and Syntax Highlighting adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor. 

The extension will detect when you use signature markdown syntax for headers, bold, italics, and lists in the task description editor field, and will transform the description into rich Github-Flavored-Markdown (GFM). The extension support most GFM features, including tables and inline images. Likewise, for syntax highlighting, code language is detected automatically thanks to the highlightJS project.

While this extension is very powerful and will add measurable value to their Asana use cases, there are a few limitations. It will only work in Google chrome, and will only render markdown for users who have installed the extension. The extension will also leave plain-markdown on Asana's mobile devices. Luckily, a key strength of markdown is its readability even when not rendered!                    

एक्सटेंशन की मूल जानकारी

नाम Asana Markdown and Syntax Highlighting Asana Markdown and Syntax Highlighting
ID imkhbmmbmeppnjhkhngolpacoikjhpop
आधिकारिक URL https://chrome.google.com/webstore/detail/asana-markdown-and-syntax/imkhbmmbmeppnjhkhngolpacoikjhpop
विवरण Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor.
फ़ाइल का आकार 221 KB
स्थापना संख्या 467
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2019-03-08
प्रकाशन तिथि 2019-03-08
रेटिंग 2.60/5 कुल 10 रेटिंग्स
डेवलपर jordan
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asana Markdown and Syntax Highlighting",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor.",
    "homepage_url": "http:\/\/jordk.at\/markdown",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon64.png",
        "default_title": "browser action demo"
    },
    "permissions": [
        "tabs",
        "https:\/\/app.asana.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css",
                "css\/highlight.css"
            ]
        },
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "js\/highlight.js",
                "js\/he.js",
                "js\/marked.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}