Notion Code Formatter

Format code blocks in Notion using Prettier. Made by notaku.so

Notion Code Formatter là gì?

Notion Code Formatter là một tiện ích mở rộng Chrome được phát triển bởi https://notaku.so, và tính năng chính của nó là "Format code blocks in Notion using Prettier. Made by notaku.so".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion Code Formatter

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

                        Format your Notion code blocks white space and indentation

This extension will add a "format" button at the top of all Notion code blocks                    

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

Tên Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
URL Chính Thức https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Mô tả Format code blocks in Notion using Prettier. Made by notaku.so
Kích Thước Tệp 1.51 MB
Số Lần Cài Đặt 131
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-03-16
Ngày Phát Hành 2023-02-19
Đánh Giá 3.14/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://notaku.so
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://notaku.so
URL Trang Trợ Giúp https://notaku.so
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Code Formatter",
    "version": "1.0.3",
    "description": "Format code blocks in Notion using Prettier. Made by notaku.so",
    "author": "Tommaso De Rossi",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "formatter.js"
            ]
        }
    ]
}