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 là gì?
Asana Markdown and Syntax Highlighting là một tiện ích mở rộng Chrome được phát triển bởi jordan, và tính năng chính của nó là "Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Asana Markdown and Syntax Highlighting
Tải xuống các tệp mở rộng Asana Markdown and Syntax Highlighting dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | imkhbmmbmeppnjhkhngolpacoikjhpop |
URL Chính Thức | https://chrome.google.com/webstore/detail/asana-markdown-and-syntax/imkhbmmbmeppnjhkhngolpacoikjhpop |
Mô tả | Adds the power of markdown and syntax highlighting in 23 languages to Asana's task description editor. |
Kích Thước Tệp | 221 KB |
Số Lần Cài Đặt | 467 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Đánh Giá | 2.60/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | jordan |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |