Notion Code Formatter

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

Wat is Notion Code Formatter?

Notion Code Formatter is een Chrome-extensie ontwikkeld door https://notaku.so, en de belangrijkste functie is "Format code blocks in Notion using Prettier. Made by notaku.so".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Notion Code Formatter

Download Notion Code Formatter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Format your Notion code blocks white space and indentation

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

Basisinformatie over de Extensie

Naam Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Officiële URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Beschrijving Format code blocks in Notion using Prettier. Made by notaku.so
Bestandsgrootte 1.51 MB
Aantal Installaties 131
Huidige Versie 1.0.3
Laatst Bijgewerkt 2023-03-16
Publicatiedatum 2023-02-19
Beoordeling 3.14/5 Totaal 7 Beoordelingen
Ontwikkelaar https://notaku.so
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://notaku.so
Help Pagina-URL https://notaku.so
Ondersteunde Talen 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"
            ]
        }
    ]
}