WorkFlowy for Coders
An extension for WorkFlowy to add markdown support and syntax highlighting in notes
WorkFlowy for Coders란 무엇입니까?
WorkFlowy for Coders은(는) medovob에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for WorkFlowy to add markdown support and syntax highlighting in notes"입니다.
확장 프로그램 스크린샷
WorkFlowy for Coders 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } ] } |