Notion Code Formatter

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

What is Notion Code Formatter?

Notion Code Formatter is a Chrome extension developed by https://notaku.so, and its main feature is "Format code blocks in Notion using Prettier. Made by notaku.so".

Extension Screenshots

screenshot

Download Notion Code Formatter Extension CRX File

Download Notion Code Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Format your Notion code blocks white space and indentation

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

Extension Basic Information

Name Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Official URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Description Format code blocks in Notion using Prettier. Made by notaku.so
File Size 1.51 MB
Installation Count 131
Current Version 1.0.3
Last Updated 2023-03-16
Publish Date 2023-02-19
Rating 3.14/5 Total 7 Ratings
Developer https://notaku.so
Email [email protected]
Payment Type free
Extension Website https://notaku.so
Help Page URL https://notaku.so
Supported Languages 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"
            ]
        }
    ]
}