Notion Code Formatter

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

什麼是Notion Code Formatter?

Notion Code Formatter是由https://notaku.so開發的Chrome擴展程式,該擴展的主要功能是“Format code blocks in Notion using Prettier. Made by notaku.so”。

擴展截圖

screenshot

下載Notion Code Formatter擴展crx文件

下載Notion Code Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Format your Notion code blocks white space and indentation

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

擴展基本資訊

名稱 Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
官方網址 https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
簡介 Format code blocks in Notion using Prettier. Made by notaku.so
檔案大小 1.51 MB
安裝次數 131
目前版本 1.0.3
更新時間 2023-03-16
上架時間 2023-02-19
評分 3.14/5 共 7 次評分
開發者 https://notaku.so
電子郵箱 [email protected]
付費類型 free
擴展官網 https://notaku.so
說明頁面URL https://notaku.so
支援的語言 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"
            ]
        }
    ]
}