WorkFlowy for Coders

An extension for WorkFlowy to add markdown support and syntax highlighting in notes

WorkFlowy for Coders क्या है?

WorkFlowy for Coders medovob द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for WorkFlowy to add markdown support and syntax highlighting in notes"।

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

screenshot

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

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

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

                        Adds some style tweaks and minor features to the excellent WorkFlowy.com. 

When zoomed into a node, this extension will render markdown type syntax and add syntax highlighting to any code blocks within the node's notes.

note: to edit notes use the keyboard shortcut (SHIFT+ENTER) or double-click the notes area

Visit http://daringfireball.net/projects/markdown/syntax for markdown syntax guide

## Update 5 Jan 2012

By popular demand, I have removed all the unnecessary style modifications.

Source code now available on GitHub

https://github.com/medovob/workflowy-for-coders

Any suggestions, improvements, enhancements most welcome

## Credits:

Showdown - John Fraser - Javascript port of Markdown
Showdown Copyright (c) 2007 John Fraser. http://www.attacklab.net/

Original Markdown Copyright (c) 2004-2005 John Gruber http://daringfireball.net/projects/markdown/ 

Benjamin Arthur Lupton - jQuery implementation of Google Syntax Highlighter
@copyright (c) 2009-2010 Benjamin Arthur Lupton {@link http://www.balupton.com}

Tabby jQuery plugin - Ted Devito - offers tab support in textareas
http://teddevito.com/demos/textarea.html
Copyright (c) 2009 Ted Devito                    

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

नाम WorkFlowy for Coders WorkFlowy for Coders
ID hogpngcijkfmbfijfkaapeejhijipddp
आधिकारिक URL https://chromewebstore.google.com/detail/workflowy-for-coders/hogpngcijkfmbfijfkaapeejhijipddp
विवरण An extension for WorkFlowy to add markdown support and syntax highlighting in notes
फ़ाइल का आकार 96.52 KB
स्थापना संख्या 676
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2012-09-04
प्रकाशन तिथि 2012-09-04
रेटिंग 3.11/5 कुल 28 रेटिंग्स
डेवलपर medovob
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WorkFlowy for Coders",
    "version": "1.3.0",
    "description": "An extension for WorkFlowy to add markdown support and syntax highlighting in notes",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/workflowy.com\/*",
                "https:\/\/workflowy.com\/*"
            ],
            "css": [
                "css\/oblong-workflowy.css",
                "js\/syntax-highlighter\/prettify\/prettify.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/showdown.js",
                "js\/jquery.textarea.js",
                "js\/syntax-highlighter\/prettify\/prettify.js",
                "js\/syntax-highlighter\/scripts\/jquery.syntaxhighlighter.js",
                "js\/oblong-workflowy.js",
                "js\/caja-html-sanitizer.js"
            ],
            "runat": "document_end"
        }
    ]
}