Notion Code Formatter

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

Was ist Notion Code Formatter?

Notion Code Formatter ist eine Chrome-Erweiterung, die von https://notaku.so entwickelt wurde, und ihr Hauptmerkmal ist "Format code blocks in Notion using Prettier. Made by notaku.so".

Erweiterungsscreenshots

screenshot

Notion Code Formatter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Code Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Format your Notion code blocks white space and indentation

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

Grundlegende Informationen zur Erweiterung

Name Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Offizielle URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Beschreibung Format code blocks in Notion using Prettier. Made by notaku.so
Dateigröße 1.51 MB
Installationsanzahl 131
Aktuelle Version 1.0.3
Letztes Update 2023-03-16
Veröffentlichungsdatum 2023-02-19
Bewertung 3.14/5 Insgesamt 7 Bewertungen
Entwickler https://notaku.so
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://notaku.so
Hilfeseite URL https://notaku.so
Unterstützte Sprachen 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"
            ]
        }
    ]
}