WorkFlowy code formatter

Makes backtick wrapped text look like code! {openSource}

WorkFlowy code formatter là gì?

WorkFlowy code formatter là một tiện ích mở rộng Chrome được phát triển bởi ryanpcmcquen, và tính năng chính của nó là "Makes backtick wrapped text look like code! {openSource}".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WorkFlowy code formatter

Tải xuống các tệp mở rộng WorkFlowy code formatter 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

                        Make backtick wrapped text look like code! {openSource}

An open source extension to make backtick wrapped text look like code in WorkFlowy.

Unlike 'WorkFlowy for coders', this solution is lightweight, pure JavaScript, and still allows editing text in all views.

Any text wrapped in 1 or 3 backticks will be rendered as code (inspired by Markdown syntax).

Use 1 backtick for inline code, and 3 backticks to wrap multi-line code. Note that the 3 backticks MUST be on their own line.

Note that extensions do not work inside of Chrome apps, so if you are using the WorkFlowy 'app', this extension will not be running. This is a limitation of Chrome apps and extensions.

Enjoy!

https://github.com/ryanpcmcquen/workflowyCodeFormatter                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WorkFlowy code formatter WorkFlowy code formatter
ID kglihipcanlbglgikjghocmbbbbkfemn
URL Chính Thức https://chromewebstore.google.com/detail/workflowy-code-formatter/kglihipcanlbglgikjghocmbbbbkfemn
Mô tả Makes backtick wrapped text look like code! {openSource}
Kích Thước Tệp 297 KB
Số Lần Cài Đặt 472
Phiên Bản Hiện Tại 0.9.3
Cập Nhật Lần Cuối 2020-10-07
Ngày Phát Hành 2020-04-29
Đánh Giá 4.81/5 Tổng số 21 Đánh Giá
Nhà Phát Triển ryanpcmcquen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ryanpcmcquen/workflowyCodeFormatter
URL Trang Trợ Giúp https://github.com/ryanpcmcquen/workflowyCodeFormatter
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WorkFlowy code formatter",
    "description": "Makes backtick wrapped text look like code! {openSource}",
    "version": "0.9.3",
    "icons": {
        "128": "wcf_icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/workflowy.com\/*"
            ],
            "js": [
                "assets\/codeFormatter\/codeFormatter.js",
                "workflowyCodeFormatter.js"
            ]
        }
    ]
}