WorkFlowy for Coders

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

WorkFlowy for Codersคืออะไร?

WorkFlowy for Coders เป็นส่วนขยายของ Chrome ที่พัฒนาโดย medovob และคุณลักษณะหลักของมันคือ "An extension for WorkFlowy to add markdown support and syntax highlighting in notes"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WorkFlowy for Coders

ดาวน์โหลดไฟล์ส่วนขยาย WorkFlowy for Coders ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}