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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor."입니다.
확장 프로그램 스크린샷
Asana Markdown and Syntax Highlighting 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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!
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |