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
公式URL 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
Eメール [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"
            ]
        }
    ]
}